How can I solve the recurrence relation $$T(n)=2T\left(\frac n2\right)+\frac{n}{\log n}$$?
I am stuck up after few steps..
I arrive till
$$T(n) = 2^k T(1) + \sum_{i=0}^{\log(n-1)} \left(\frac{n}{\log n} - i\right)$$
How to simplify this log summation?
$$S(k)=2^{-k}\cdot T(2^k)\implies S(k)=S(k-1)+\frac1{k\log2} $$ $$ S(k)=S(0)+\frac{H_k}{\log2}\implies T(2^k)=\Theta(2^k\cdot\log k)$$ ...Which does not imply that $T(n)=\Theta(n\cdot\log\log n)$, although this might be the conclusion suggested in your textbook.