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

A372995
a(n) = n! / (a(n-1) a(n-2) a(n-3)), where a(0) = a(1) = a(2) = 1.
0
1, 1, 1, 6, 4, 5, 6, 42, 32, 45, 60, 462, 384, 585, 840, 6930, 6144, 9945, 15120, 131670, 122880, 208845, 332640, 3028410, 2949120, 5221125, 8648640, 81767070, 82575360, 151412625, 259459200, 2534779170, 2642411520, 4996616625, 8821612800, 88717270950
OFFSET
0,4
MATHEMATICA
a[0] = 1; a[1] = 1; a[2] = 1;
a[n_] := a[n] = n!/(a[n - 1]*a[n - 2]*a[n - 3]);
Table[a[n], {n, 0, 40}]
CROSSREFS
Sequence in context: A140246 A130786 A197295 * A199385 A177159 A361605
KEYWORD
nonn
AUTHOR
Clark Kimberling, Jul 16 2024
STATUS
approved