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

A375561
Expansion of e.g.f. 1 / (1 + x * log(1 - x^2)).
5
1, 0, 0, 6, 0, 60, 720, 1680, 40320, 453600, 3326400, 67858560, 878169600, 11935123200, 240708948480, 3946374432000, 73927190937600, 1621341859737600, 32960791774310400, 758085507686707200, 18570669277095936000, 454016684061997056000, 12100759898595611443200
OFFSET
0,4
FORMULA
a(n) = n! * Sum_{k=0..floor(n/2)} (n-2*k)! * |Stirling1(k,n-2*k)|/k!.
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(1/(1+x*log(1-x^2))))
(PARI) a(n) = n!*sum(k=0, n\2, (n-2*k)!*abs(stirling(k, n-2*k, 1))/k!);
CROSSREFS
Cf. A353226.
Sequence in context: A353226 A191688 A375588 * A375831 A375830 A375833
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 19 2024
STATUS
approved