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

A372988
a(n) = (2n)!/(n!*a(n-2)), with a(0) = 1, a(1) = 1.
2
1, 1, 12, 120, 140, 252, 4752, 68640, 109200, 257040, 6139584, 109549440, 210974400, 591192000, 16576876800, 343108846080, 758663942400, 2419157664000, 76585170816000, 1777303822694400, 4379008275532800, 15472932418944000, 540078624594432000, 13756331587654656000
OFFSET
0,3
MATHEMATICA
a[0] = 1; a[1] = 1;
a[n_] := a[n] = (2n)!/(n!*a[n - 2]);
Table[a[n], {n, 0, 20}]
CROSSREFS
Sequence in context: A075366 A276668 A076633 * A110423 A006953 A164877
KEYWORD
nonn
AUTHOR
Clark Kimberling, Jul 09 2024
STATUS
approved