I want to find the bound for $T(n) = T (\frac{n}{5}) + \frac {n}{\log (n)}$. I tried with forward iteration and this is what i 've got
$T(1) = c$
$T(5^1) = c + 5^1$
$T(5^2) = c + 5^1 + (5^2)/2$
$T(5^3) = c + 5^1 + (5^2)/2 + (5^3)/3$
$T(5^k) = c + 5^1 + (5^2)/2 + (5^3)/3 + .. + (5^k)/k$
I am not able to solve this. Is there any formula to solve the above equation.