I want to show that the requrrence $T (n) = \sqrt{n} T(\sqrt{n}) + O (n)$ is in $O(n \log \log n)$
Here's my attempt:
If we expand the recursion tree, at a level $i$, there are $n^{1/2^k}$ subproblems each requiring work equal to $n^{1/2^k}$. There are $\log \log n$ levels in this tree.
So the summation is: $\sum_{i = 0}^{\log \log n} n^{1/2^{(k-1)}}$
Is this summation correct, and how can I show it is in $O(n \log \log n)$?