I am trying to solve this recurrence using back substitution.
$$T(n)=T(n^{1/2})+n$$ where T(2)=1
I solved it and got the kth term as follows:
$$T(n)=T(n^{1/2^k})+(n)^{1/2}+(n)^{1/2^2}+(n)^{1/2^3}+....(n)1/{2^{{k-1}}}+n$$
But i don't have any idea how to deal with this series.Please give me some idea to solve this series.