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!)
A107706 Quadratic recurrence a(n)=2a(n-1)^2+a(n-2), a(0)=a(1)=1. 0
1, 1, 3, 19, 725, 1051269, 2210333021447, 9771144131398048324998887, 190950515273109040540985906104397627141067435498985, 72924198566131697919005645563941249133599421947333610081098812005030529313728193495031984760197059337 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) ~ 1/2 * c^(2^n), where c = 1.5761071725603835806427292143532632951057735784139134374711... . - Vaclav Kotesovec, Jan 19 2015
MATHEMATICA
RecurrenceTable[{a[n]==2*a[n-1]^2+a[n-2], a[0]==1, a[1]==1}, a, {n, 0, 10}] (* Vaclav Kotesovec, Jan 19 2015 *)
PROG
(PARI) a(n)=if(n<0, -a(-1-n), if(n<2, 1, 2*a(n-1)^2+a(n-2)))
CROSSREFS
Sequence in context: A272571 A355615 A329470 * A330040 A168591 A319190
KEYWORD
nonn
AUTHOR
Michael Somos, May 22 2005
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 19 06:44 EDT 2024. Contains 371782 sequences. (Running on oeis4.)