I'm trying to solve this recurrence: $T(n) =T(n-2) + 1/\ln n$. And I can't make progress on.
What I did so far:
$$ \frac{1}{\ln(n - 2i)} = 1 \\ \ln(n-2i) = 1 \\ n - 2i = 2 \\ i = \frac{n-2}{2} $$
$ n' = i $, that is, n' is the tree's height.
$$ \sum_{i=0}^{n'} \frac{1}{\ln(n-2i)} \\ \sum_{i=1}^{n'+1} \frac{1}{\ln(2i)} $$
So, I'm stuck in here. Looks like that the correct answer is $ \theta(\ln(\ln(n)) $ by using the harmonic series, but I don't know how to get there.