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

A366777
Expansion of e.g.f. -log(1 + x^3 * log(1 - x)).
1
0, 0, 0, 0, 24, 60, 240, 1260, 28224, 241920, 2181600, 21621600, 395176320, 5915669760, 87034409280, 1321166246400, 26242709391360, 529649632512000, 10741214992435200, 221702803264051200, 5187617452174233600, 128491776028533657600
OFFSET
0,5
FORMULA
a(n) = n! * Sum_{k=1..floor(n/4)} (k-1)! * |Stirling1(n-3*k,k)|/(n-3*k)!.
PROG
(PARI) a(n) = n!*sum(k=1, n\4, (k-1)!*abs(stirling(n-3*k, k, 1))/(n-3*k)!);
CROSSREFS
Cf. A368166.
Sequence in context: A052759 A356911 A353229 * A351504 A356099 A356971
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Dec 15 2023
STATUS
approved