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!)
A276693 a(n) = a(n-2)*a(n-3) - a(n-1); a(0) = 3, a(1) = 5, a(2) = 7. 1
3, 5, 7, 8, 27, 29, 187, 596, 4827, 106625, 2770267, 511908608, 294867810267, 1417828655948069, 150943952469132130267, 418071880169258361764894156, 214012660834726939177944668730210267, 63105422008735225121538219609433904551328809385 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
FORMULA
a(n) ~ c^(d^n), where c = 2.46982021132238000769..., d = A060006 = (1/2+sqrt(23/108))^(1/3) + (1/2-sqrt(23/108))^(1/3) = 1.32471795724474602596..., real root of the equation d*(d^2-1) = 1. - Vaclav Kotesovec, Oct 04 2016
MATHEMATICA
RecurrenceTable[{a[n] == a[n-2]*a[n-3]-a[n-1], a[0] == 3, a[1]==5, a[2]==7}, a, {n, 0, 17}]
nxt[{a_, b_, c_}]:={b, c, a*b-c}; NestList[nxt, {3, 5, 7}, 20][[All, 1]] (* Harvey P. Dale, May 27 2020 *)
PROG
(C) int seq(int n) {int v = 3; if(n <= 2) {v = 3+2*n; } else {v = seq(n-2)*seq(n-3) - seq(n-1); } return v; }
CROSSREFS
Sequence in context: A345343 A200655 A249439 * A127050 A316988 A031312
KEYWORD
nonn
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 May 28 19:24 EDT 2024. Contains 372919 sequences. (Running on oeis4.)