Every time I solve these questions, I get stuck at the end where I need to find a closed form for the summation.
Here in this case, I have reached until this point: $$ \begin{align} T(n) &= T(n-2) + 1/\lg n \\ &= T(n-4)+ 1/\lg(n-2) + 1/\lg n \\ &= T(n-6) + 1/\lg(n-4) + 1/\lg(n-2) + 1/\lg n. \qquad (1) \end{align} $$ Assuming $T(1) = 1$, I put $n - 6 = 1$ and substituted into (1):
$$ T(6) = T(1) + 1/\lg3+ 1/\lg 5+ 1/\lg7.$$
Now at this point I am not able to find out $\sum_{i=1}^n 1/\lg(2i-1)$.
On similar grounds , I become blank for another recurrence relation $T(n) = T(n-1)+1/\lg n$, and my solution drills down up to here: $$T(n) = T(1)+ 1/\lg2 + 1/\lg3 + 1/\lg4 + \cdots.$$
How do I evaluate such sums?