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

A341586
E.g.f.: (exp(1 - exp(x)) - 1)^2 / 2.
0
1, 0, -4, -5, 22, 98, -5, -1458, -5136, 9053, 161328, 549822, -1954067, -30099188, -114161728, 500200027, 8875931202, 42311243830, -149028931789, -3816065804086, -24704581255020, 33033659868037, 2184285021783940, 20047242475274290, 30117550563701293
OFFSET
2,3
FORMULA
a(n) = Sum_{k=2..n} (-1)^k * Stirling2(n, k) * Stirling2(k, 2).
a(n) = Sum_{k=2..n} (-1)^k * Stirling2(n, k) * (2^(k-1) - 1).
a(n) = Sum_{k=1..n-1} binomial(n-1, k) * A000587(k) * A000587(n-k).
MATHEMATICA
nmax = 26; CoefficientList[Series[(Exp[1 - Exp[x]] - 1)^2/2, {x, 0, nmax}], x] Range[0, nmax]! // Drop[#, 2] &
Table[Sum[(-1)^k StirlingS2[n, k] StirlingS2[k, 2], {k, 2, n}], {n, 2, 26}]
CROSSREFS
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Feb 15 2021
STATUS
approved