Can the master theorem be used to prove a tight upper-bound on $T(n) = 3T(\frac{2}{3}n)$?
I've drawn the tree for the recurrence and found a sequence: $n + 2n + \frac{8}{3}n+\frac{32}{9}n+\frac{128}{27}n+\frac{512}{81}n$...
But I'm not sure 1. how to write this sum in $\sum$-form and, more formally, how I can prove the tight asymptotic bound for the original recurrence.
By the master theorem, since $f(n)=0$, $$T(n)=\Theta(n^{\log_{3/2}3})$$ If $f(n)=n$ or even $n^2$, this result would still hold, since $O(f(n))<\log_{3/2}3\approx 2.7$.