I have to solve the above recurrence relation using induction method but I am kind of lost. My attempt was
$$T(n)=2T\left(\frac{n}{2}+16\right)+n.$$
Then I took, $\frac{n}{2}+16$ in the place of n
\begin{align*} T(n)&= 2\left[2T\left(\frac{n}{4}+32\right)+ \left(\frac{n}{2}+16\right)\right]+n \\ &=2^2T(n/4+32)+16+n/2+n \\ &=2^2T(n/4+32)+16+n(1+1/2). \end{align*}
Then I took $\frac{n}{4}+32$ in $n's$ place And, $T(n)=2^2\left[2T\left(\frac{n}{8}+48\right)+\left(\frac{n}{4}+32\right)\right]+n$
I don't know if it right or wrong. I am kind of stuck in this point. Should I take $\left(\frac{n}{4}+16\right)$ as $n$ or not ?