This is the recursive formula: $$\begin{cases} a_1=1/2,\\ a_n= \sqrt {\frac {a_{n-1}+1}{2}} \end{cases}$$
I have calculated the first 4 terms to be $\frac12, \frac {\sqrt3}2, \frac {\sqrt{\sqrt3+2}}2, \frac {\sqrt{\sqrt{\sqrt3+2}+2}}2$
How can I find the explicit formula?
Looking at the first 4 terms, I notice that the denominator remains at 2, while the numerator appears to also be recursive. I will call this numerator $b_n$ $$\begin{cases} b_1=1,\\ b_n= \sqrt {b_{n-1}+2} \end{cases}$$
I am thinking that if I find the explicit formula for $b_n$, perhaps I could use the formula $\frac {b_n}2=a_n$ and solve.
I also figure out that in the recursive formula where $c_1=x$, and $c_{n}=\sqrt{c_{n-1}}$, the explicit formula would be: $$c_n=x^\frac1{2^{(n-1)}}$$
I am currently struggling on how to solve for the case $b_n=\sqrt{b_{n-1}+2}$