I would like to solve the relation:
$T(n^6) = 9T(n^{\frac{1}{6}}) + \log^2_2(n)$
Now upon searching, I found that such relations can be solved using iteration method and making a substitution, hence I tried substituting $m = \log_2 n$. This gives the relation:
$T(64^m) = 9T(2^{\frac{m}{6}})+m^2$. Am I solving this correctly?? How do I proceed further? Please help, I am not good at this.