Finding an approximation for $T(n) = 3T\left(\frac n3\right) + \sqrt n$
I tried to solve this: Proving that $T(n) = 3T\left(\frac n3\right) + \sqrt n = \Theta(n)$ in a different approach but I'm getting something different than the answers there:
For the $ith$ level of the recursion we have $3^i$ verticies, and the "amount of work" in the $ith$ level is $\sqrt{\frac n {3^i}}$. The last level is when $i=\log_3 n$ so we have $$T(n)=\sum _{i=1}^{logn}\sqrt{\frac n {3^i}}=\sqrt n \sum _{i=1}^{logn}\sqrt{\frac 1 {3^i}}$$
And since that sum is converging to a finite value we get: $T(n)=\sqrt n$.
Now obviously $\sqrt n \neq \Theta(n)$
What is wrong here?