Say I have the following recurrence:
$$T(n) = n + T\left(\frac{n}{2}\right) + n + T\left(\frac{n}{4}\right) + n + T\left(\frac{n}{8}\right) + \cdots +n + T\left(\frac{n}{n}\right) $$
where $n = 2^k$, $k \in \mathbb{N} $ and $T(1) = 1$.
simplified to:
$$T(n) = n \log_2n + \sum_{i=1}^{\log_2n}T\left(\frac{n}{2^i}\right) $$
The Master's theorem is not applicable; neither is the Akra-Bazzi method since $k = \log_2$ is not a constant.
What strategy can I use to find a closed form solution? I have a feeling that the closed form is $T(n) = \sum_{i=0}^{\log_2n}\left[j\frac{n}{2^i} \log_2 \left(\frac{n}{2^i} \right)\right] + 1 $ where $j = \max\left(1, 2^{i-1}\right)$ but would like a proof.
Since we only need and evaluate $T(n)$ when $n$ is a power of $2$, say that $a(k)=T(2^k)$. The recursion becomes (I will use $n$ again from now on): $$ a(n)=n2^n+\sum_{i=0}^{n-1}a(i) $$ Define $s(n)=\sum_{i=0}^na(i)$. The above relation can be rewritten to $$ s(n)-s(n-1)=n2^n+s(n-1) $$ thus $$ s(n)=n2^n+2s(n-1) $$ This is is just a first degree linear recurrence relation that should be solvable.
Since we have $T(1)=1$, it follows that $a(0)=1$ and thus $s(0)=1$. The general solution for the recursion relation is $$ s(n)=2^{n-1}(n(n+1)+C) $$ for any constant $C$. (I found this using mathematica. The homogeneous part ($C2^{n-1}$) is obvious, but the inhomogeneous part is (probably) easiest found by writing out some small values. See @CarstenSchultz's comment below for a nice way to find it.) Solving this with $n=0$ gives $$ 1=\frac 12 C $$ Thus, $C=2$ and we get $$ s(n)=2^{n-1}(2+n+n^2)\\ a(n)=s(n)-s(n-1)=2^{n-2}(2+3n+n^2)\\ T(2^n)=s(n)-s(n-1)=2^{n-2}(2+3n+n^2)\\ $$ Note that $a(0)=T(1)=1\neq s(0)-s(-1)=\frac 12$. Since $s(0)=1$, we have $s(-1)=0$, which makes sense since it is an empty sum. The formula for $s(n)$ is thus only valid for nonnegative $n$.