|
|
A174442
|
|
a(n) = a(n-1)+a(n-2) if n is odd, otherwise a(n) = a(n-1)*a(n-2) with a(1)=3 and a(2)=5.
|
|
1
|
|
|
3, 5, 8, 40, 48, 1920, 1968, 3778560, 3780528, 14284951879680, 14284955660208, 204059904209433724979773440, 204059904209448009935433648, 41640444505966182658016083427778017651139155192709120, 41640444505966182658016083631837921860587165128142768
(list;
graph;
refs;
listen;
history;
text;
internal format)
|
|
|
OFFSET
|
1,1
|
|
LINKS
|
|
|
MATHEMATICA
|
nxt[{n_, a_, b_}]:={n+1, b, If[EvenQ[n], a+b, a*b]}; NestList[nxt, {2, 3, 5}, 15][[All, 2]] (* Harvey P. Dale, Nov 15 2021 *)
|
|
CROSSREFS
|
|
|
KEYWORD
|
nonn
|
|
AUTHOR
|
|
|
EXTENSIONS
|
|
|
STATUS
|
approved
|
|
|
|