Let $n=2^k$ and $T(2)=1$. Then, if we define $T(n)=\sqrt{n}(T(\sqrt{n}))+n$ for $n>2$, then what would be the exact solution of the recurrence?
The master theorem might not work here, and guessing a solution seems hard. In addition, I suspect $n=2^{2^k}$, for otherwise, we get irrational values. I think $T(n)=O(n\log n)$. But, is a better bound possible? Thanks beforehand.