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

A355767
E.g.f. satisfies A(x)^(A(x)^2) = 1/(1 - x*A(x)).
2
1, 1, 0, 6, -4, 300, -828, 42224, -266992, 11916864, -132472320, 5688511488, -95465876064, 4138883728512, -95019458907072, 4276023328128000, -125481256750340352, 5958015717717504000, -212934915549001078272, 10767675634298110255104
OFFSET
0,4
FORMULA
a(n) = Sum_{k=0..n} (n-2*k+1)^(k-1) * |Stirling1(n,k)|.
PROG
(PARI) a(n) = sum(k=0, n, (n-2*k+1)^(k-1)*abs(stirling(n, k, 1)));
CROSSREFS
Cf. A355768.
Sequence in context: A334806 A014403 A232818 * A077181 A036481 A021610
KEYWORD
sign
AUTHOR
Seiichi Manyama, Jul 16 2022
STATUS
approved