Just trying to solve this recursive equation. I tried to use an iteration method and I'm struggling to understand how to determine when the iteration is over (first iteration: $n^{0.5}$, second $n^{0.25}$, third $n^{0.125}$).
$$T(n) = T(\sqrt{n}) + 17$$