The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A143392 A quadratic recursion sequence: a(n)=a(n - 1)^2 - 2*a(n - 1) - a(n - 2)^2 + 2*a(n - 2). 0
1, 2, 1, -1, 4, 5, 7, 20, 325, 104615, 10943984020, 119770786197183303365, 14345041226291394498726932547331126324135, 205780207783999715270619814569860727079365052973702253248437750317796955577133460 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n)=a(n - 1)^2 - 2*a(n - 1) - a(n - 2)^2 + 2*a(n - 2).
log a(n) ~ 0.011287... * 2^n - Charles R Greathouse IV, Oct 06 2009
MATHEMATICA
Clear[a, n]; a[0] = 1; a[1] = 2; a[n_] := a[n] = a[n - 1]^2 - 2*a[n - 1] - a[n - 2]^2 + 2*a[n - 2]; Table[a[n], {n, 0, 15}]
nxt[{a_, b_}]:={b, b^2-2b-a^2+2a}; NestList[nxt, {1, 2}, 15][[All, 1]] (* Harvey P. Dale, Aug 15 2021 *)
CROSSREFS
Sequence in context: A078047 A329689 A270952 * A090668 A307977 A355334
KEYWORD
sign
AUTHOR
EXTENSIONS
Corrected by Harvey P. Dale, Aug 15 2021
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 May 28 14:20 EDT 2024. Contains 372913 sequences. (Running on oeis4.)