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

A375682
Expansion of e.g.f. 1 / (1 + x * log(1 - x^2/2))^3.
2
1, 0, 0, 9, 0, 45, 1080, 630, 30240, 470610, 1247400, 38170440, 523908000, 3454050600, 87950182320, 1245647403000, 14580569203200, 346019491818000, 5524280291930400, 92520760776444000, 2188180621979352000, 40781057935225608000, 857154570994798876800
OFFSET
0,4
FORMULA
E.g.f.: B(x)^3, where B(x) is the e.g.f. of A375167.
a(n) = (n!/2) * Sum_{k=0..floor(n/2)} (n-2*k+2)! * |Stirling1(k,n-2*k)|/(2^k*k!).
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(1/(1+x*log(1-x^2/2))^3))
(PARI) a(n) = n!*sum(k=0, n\2, (n-2*k+2)!*abs(stirling(k, n-2*k, 1))/(2^k*k!))/2;
CROSSREFS
Sequence in context: A182213 A340954 A087094 * A343575 A270010 A167319
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 23 2024
STATUS
approved