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

A371118
E.g.f. satisfies A(x) = 1 - x^2*log(1 - x*A(x)).
5
1, 0, 0, 6, 12, 40, 900, 8568, 80640, 1170720, 19625760, 335079360, 6259524480, 132897697920, 3078950434560, 75934287475200, 2010354982272000, 57241482249369600, 1735591000023336960, 55694476130213652480, 1889613850762113638400
OFFSET
0,4
FORMULA
a(n) = n! * Sum_{k=0..floor(n/3)} |Stirling1(n-2*k,k)|/(n-3*k+1)!.
PROG
(PARI) a(n) = n!*sum(k=0, n\3, abs(stirling(n-2*k, k, 1))/(n-3*k+1)!);
CROSSREFS
Cf. A371116.
Sequence in context: A366752 A375685 A351503 * A355287 A375826 A362891
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Mar 11 2024
STATUS
approved