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

A356814
a(n) = Sum_{k=0..n} (-1)^k * (k*n+1)^(n-k) * binomial(n,k).
3
1, 0, -4, -27, -64, 4375, 199584, 6739607, 169934848, -1012395105, -709624000000, -86599643309201, -8221227668471808, -638169258399740977, -27617164284655812608, 3853095093357099609375, 1568756883209662050074624, 360407172063462944082773311
OFFSET
0,3
FORMULA
a(n) = n! * [x^n] exp( x * (1 - exp(n * x)) ).
a(n) = [x^n] Sum_{k>=0} (-x)^k / (1 - (n*k+1)*x)^(k+1).
a(n) = n! * Sum_{k=0..floor(n/2)} (-1)^k * n^(n-k) * Stirling2(n-k,k)/(n-k)!.
PROG
(PARI) a(n) = sum(k=0, n, (-1)^k*(k*n+1)^(n-k)*binomial(n, k));
(PARI) a(n) = n!*sum(k=0, n\2, (-1)^k*n^(n-k)*stirling(n-k, k, 2)/(n-k)!);
CROSSREFS
KEYWORD
sign
AUTHOR
Seiichi Manyama, Aug 29 2022
STATUS
approved