Consider the following recurrence relation:
\[
T(n) =
\begin{cases}
\sqrt{n}T(\sqrt{n}) + n & \text{for } n \geq 1,
1 & \text{for } n = 1.
\end{cases}
\]
Which one of the following options is CORRECT?
Show Hint
For recurrence relations involving nested square roots, use transformations like ( n = 2^m ) to simplify and determine the number of levels.