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!)
A268021 a(1) = a(2) = 1; if n > 2 then a(n) = a(n-1)*a(n-2) - a(n-2) - a(n-1). 1
1, 1, -1, -1, 3, -5, -13, 83, -1149, -94301, 108447299, -10226797095997, -1109068512255229713405, 11342218640394605506848882609549187, -12579297553175979435284002182896862386417808141640587517 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,5
LINKS
FORMULA
|a(n)| ~ c^(phi^n), where phi = A001622 = (1+sqrt(5))/2 is the golden ratio and c = 1.097478514051533426... . - Vaclav Kotesovec, Jan 26 2016
MATHEMATICA
a[1] = 1; a[2] = 1; a[n_] := a[n] = -a[n - 1] - a[n - 2] + a[n - 1]*a[n - 2]; Table[a[n], {n, 20}]
nxt[{a_, b_}]:={b, a*b-a-b}; NestList[nxt, {1, 1}, 20][[All, 1]] (* Harvey P. Dale, Nov 29 2022 *)
CROSSREFS
Sequence in context: A066141 A159293 A051901 * A018928 A239381 A180313
KEYWORD
sign
AUTHOR
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 25 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)