$a_{n} = 1 \ \ when \ \ n = 0 , and \ \ a_{n} = 2 \sqrt{a_{n-1}} \ \ when \ \ n > 0$
I'm a complete beginner at solving something like this, and I'm not sure where to start. The two methods I know are iterative expansion which I have trouble understanding how it works. And I know how to use induction, but I'm not sure how to apply it here.
Now just by doing a few terms by hand (hopefully correctly) here's what I got,
$ 1, 2, 2\sqrt{2}, 2\sqrt{2\sqrt{2}}$ and I'm pretty sure it just has n amount of $2\sqrt{2}$ under the sqrt sign.
I'm not sure how to progress with these types of problems in general. Thanks.
$$a_n=2\sqrt{2\sqrt{2\sqrt{...}}}$$ $$=2^{(1+\frac12+\frac14+...+\frac1{2^{n-1}})}$$ $$=2^{\bigg(\frac{1-\frac1{2^n}}{1-\frac12}\bigg)}$$ $$=2^{2(1-\frac1{2^{n}})}$$ $$=4^{(1-\frac1{2^{n}})}$$