login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

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
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