If $$a_{n+1}=a_n^2+1,$$ with initial $a_1=\frac{1}{2}$. How to solve this sequence problem, i.e., how to represent $a_n$ in closed form?
-
What is the question? – MJD May 16 '12 at 15:39
-
By "solve," I assume you want to find a closed form for $a_n.$ Right? – May 16 '12 at 15:42
-
1Yes, a closed form for $a_n$. – Yimin May 16 '12 at 15:43
-
11Let's not jump into voting to close, before we ask OP for clarifications. Especially if OP is willing to promptly reply and edit the question within few minutes of "clarification request" comments. It's annoying. – May 16 '12 at 15:51
-
4It is unlikely that there is a closed form. Recursions of the form $a_{n+1}=a_n^2+c$ are very complicated. The Mandelbrot set reflects this. – lhf May 16 '12 at 16:04
-
1My first though is to represent $a_n=\frac{b_n}{c_n}$ in lowest terms. It becomes $c_n=2^{2^{(n-1)}}$, $b_{n+1}=b_n^2+2^{2^{(n-1)}}$, $b_1=1$, which gets you into $\mathbb N$. But I'm not sure it helps any. – Ross Millikan May 16 '12 at 16:04
-
2Why do you think there is a closed form? What would you do if you had one? Perhaps you're trying to solve a problem related to this sequence that does not need a closed form. – lhf May 16 '12 at 16:06
-
@RossMillikan I have tried that, it does help much. I also tried to use sinh and cosh functions to replace $a_n$, but it did not provide any convenience either. – Yimin May 16 '12 at 16:16
-
See http://applied-discrete-structures.wiki.uml.edu/Chapter+8 – leo May 16 '12 at 16:44
-
@J.D.Thanks for the correction. I immediately regretted my vote to close, but the software does not allow me to retract it. Fortunately there is no harm done. – MJD May 16 '12 at 19:44
3 Answers
EDIT: The answer below assumes $a_1$ is an integer, and as such is not directly applicable to your question, but I am leaving it here in case people can make use of the results mentioned in the paper below.
Aho and Sloan proved that for sequences like yours, there is a constant $k$ such that
$$a_n = \lfloor k^{2^n} \rfloor$$
for sufficiently large $n$. $k$ can be defined as a limit of a sequence using $a_n$ itself. If you include $k$ as one of your closed form constants, you are done!
See their paper for details: http://www.fq.math.ca/Scanned/11-4/aho-a.pdf
Of course, for your special case, one might still be able to find a different "closed form" which might be more appealing to you.
- 82,206
-
1
-
1@Didier: Yes, it isn't. The paper deals with that too. I read the question too quickly and thought $a_1 = 1$. Will update. – Aryabhata May 16 '12 at 18:00
-
-
@Didier: I added a disclaimer! It might need some work to get those results to work for this problem (if at all they work). But I have left the answer, in case someone wants to try. – Aryabhata May 16 '12 at 20:17
The recurrence $a_{n+1} = a_n^2+c$ has a (known) closed form if and only if $c=0$ or $c=-2$. See this answer for more explanation.
Perhaps let $a_n=\tan \theta_n$. Then $\tan \theta_{n+1}=\sec^2 \theta_n$. So, $\tan \theta_2=\sec^2 \theta_1$, $\tan \theta_3=1+\sec^4 \theta_1$, etc. I am not sure if this procedure will produce a closed form.
- 4,113