If $ T(n) = \sqrt{2n}T(\sqrt{2n} )+ {n ^ 2} $ , what is complexity of T(n)?
Well, I let $ n = {2 ^ k} $ , $ y(k) = \frac{T({2 ^ k} )}{4 ^ k} $ and I tried to resolve this recurrence by iterations methods, but I saw that it not works here. How I can find the complexity for this recurrence?