I solved the recurrence $T(n) = T(\sqrt[4]{n}) + 1$, $T(2) = 1$ through thinking it through. $T(n) = O(\log{\log{n}})$ since the number of times we add 1 is the number of times we can take the 4th root of $n$. Assume $\log$ means base 2.
Apparently, I can systematically solve this recurrence by setting $n = \log{m}$ and substituting. Why? Can someone clarify that for me?
This isn't homework. I'm trying to develop a systematic way of solving similar recurrences.