[go: up one dir, main page]

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

A355990 revision #16

A355990
a(n) = n! / (6 * floor(n/3)!).
5
1, 4, 20, 60, 420, 3360, 10080, 100800, 1108800, 3326400, 43243200, 605404800, 1816214400, 29059430400, 494010316800, 1482030950400, 28158588057600, 563171761152000, 1689515283456000, 37169336236032000, 854894733428736000, 2564684200286208000
OFFSET
3,2
FORMULA
E.g.f.: (1 - x^3) * (exp(x^3) - 1)/(6 * (1 - x)).
a(n) = A355988(n)/6.
MATHEMATICA
a[n_] := n!/(6 * Floor[n/3]!); Array[a, 22, 3] (* Amiram Eldar, Jul 22 2022 *)
PROG
(PARI) a(n) = n!/(6*(n\3)!);
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace((1-x^3)*(exp(x^3)-1)/(6*(1-x))))
CROSSREFS
Column 3 of A355996.
Sequence in context: A018211 A135507 A197404 * A169637 A356012 A169638
KEYWORD
nonn,easy
AUTHOR
Seiichi Manyama, Jul 22 2022
STATUS
proposed