I am trying to solve the following recurrence relation :
$$g(n) =\sqrt n\cdot g(\sqrt n) +2n + \frac{n-\sqrt n}2$$
The Master theorem does not fulfill because of $\sqrt n$, so I tried to change the variables $m=\log(n)$ and then got stuck when I placed: $S(m):=g(2^m)$
Any suggestions?
Thank you!