I have to find $T(n) = 7 \cdot T\left(\frac{n}{7} \right)$ for $n>1$ when $n$ a power of $7$. So far I have: $$T(7) = 7\cdot T\left(\frac{7}{7}\right) = 7 \cdot T(1) = 7.$$
Then, $$T(49) = 49 \cdot T \left(\dfrac{49}{7} \right) = 49 \cdot T(7) = ?$$
What is the answer to that?