login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A144744 Recurrence sequence a(n)=a(n-1)^2-a(n-1)-1, a(0)=4. 5
4, 11, 109, 11771, 138544669, 19194625169774891, 368433635408155743950638444286989, 135743343700069833946317076518699443524748244656296738254150399131 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
a(0)=3 is the smallest integer generating an increasing sequence of the form a(n)=a(n-1)^2-a(n-1)-1.
LINKS
FORMULA
a(n)=a(n-1)^2-a(n-1)-1 and a(0)=4.
a(n) ~ c^(2^n), where c = 3.22737450272053234771396610986262048906046050824600724014923334412606964... . - Vaclav Kotesovec, May 06 2015
MATHEMATICA
a = {}; k = 4; Do[k = k^2 - k - 1; AppendTo[a, k], {n, 1, 10}]; a
PROG
(PARI) a(n, s=4)={for(i=1, n, s=s^2-s-1); s} \\ M. F. Hasler, Oct 06 2014
CROSSREFS
Sequence in context: A125888 A266894 A296617 * A267154 A320501 A214113
KEYWORD
nonn
AUTHOR
Artur Jasinski, Sep 20 2008
EXTENSIONS
Edited by M. F. Hasler, Oct 06 2014
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 16:40 EDT 2024. Contains 371916 sequences. (Running on oeis4.)