$$\sum_{i=0}^{\log n - 1} \frac{1}{\log n - i} = \Theta(\log\log n)$$
Well, my maths skills aren't that good, so other than trying to insert $i=0,1,2,\ldots$ and summing it up didn't help me to get to $\log\log n\,.$ Any ideas?
Edit: maybe somehow taking the $log$ out, and then somehow discovering I have an harmonic series that goes down and its $logn$ too.. But I'm not sure how to implement this..
Using the substitution $\log n=\mu$, we get
$$\sum_{i=0}^{\mu-1}\frac1{\mu-i}=\Theta(\log\mu)$$
If we approximate with an integral, we get
$$\sum_{i=0}^{\mu-1}\frac1{\mu-i}\approx\int_0^{\mu-1}\frac1{\mu-t}dt$$
And the rest should be quite clear.