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

A356818
Expansion of e.g.f. exp(-x * (exp(x) + 1)).
4
1, -2, 2, 1, 0, -17, -32, 103, 976, 2287, -12816, -143585, -481016, 2339335, 39769720, 209863327, -397553376, -16949434913, -142681662368, -233212601153, 9138353475736, 128343346833463, 702261255539496, -4251314594919617, -135331386127555856
OFFSET
0,2
LINKS
FORMULA
G.f.: Sum_{k>=0} (-x)^k / (1 - (k-1)*x)^(k+1).
a(n) = Sum_{k=0..n} (-1)^k * (k-1)^(n-k) * binomial(n,k).
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(-x*(exp(x)+1))))
(PARI) my(N=30, x='x+O('x^N)); Vec(sum(k=0, N, (-x)^k/(1-(k-1)*x)^(k+1)))
(PARI) a(n) = sum(k=0, n, (-1)^k*(k-1)^(n-k)*binomial(n, k));
CROSSREFS
Sequence in context: A266318 A011265 A357340 * A265863 A083747 A326787
KEYWORD
sign
AUTHOR
Seiichi Manyama, Aug 29 2022
STATUS
approved