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

A356967
E.g.f. satisfies A(x) = 1/(1 - x * A(x))^(x^2/2 * A(x)).
3
1, 0, 0, 3, 6, 20, 540, 4284, 35700, 698760, 10591560, 155024100, 3231336240, 68704908480, 1451024062488, 35843008924800, 950925111973200, 25881184257364800, 765471782499860160, 24210772652940214320, 797021694060934204800, 27752674398657594805440
OFFSET
0,4
FORMULA
a(n) = n! * Sum_{k=0..floor(n/3)} (n-k+1)^(k-1) * |Stirling1(n-2*k,k)|/(2^k * (n-2*k)!).
PROG
(PARI) a(n) = n!*sum(k=0, n\3, (n-k+1)^(k-1)*abs(stirling(n-2*k, k, 1))/(2^k*(n-2*k)!));
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Sep 06 2022
STATUS
approved