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”).

A324141
Define b(n) and c(n) by b(0)=0, b(1)=c(0)=c(1)=1; b(n)=c(n-1)*c(n-2), c(n) = (b(n-1)+c(n-1))*(b(n-2)+c(n-2)); sequence gives c(n).
1
1, 1, 2, 6, 24, 288, 15552, 9704448, 318616436736, 6659685075614957568, 4578804751138453509192623849472, 65342994997096325845410944896525471363735926865920
OFFSET
0,3
MAPLE
f:=proc(n) option remember;
if n=0 then [0, 1];
elif n=1 then [1, 1]
else
[f(n-1)[2]*f(n-2)[2], (f(n-1)[1]+f(n-1)[2])*(f(n-2)[1]+f(n-2)[2])];
fi; end;
[seq(f(n), n=0..11)];
CROSSREFS
Cf. A324140.
Sequence in context: A114778 A292751 A274098 * A277423 A191460 A073475
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Feb 20 2019
STATUS
approved