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

A318616
a(n) = n! * [x^n] (1 - x)^(n*x).
1
1, 0, -4, -9, 160, 1350, -14904, -335160, 1796096, 125615448, 204300000, -64591072920, -735003528192, 41673388751280, 1113912529707264, -30043364514345000, -1703374149711298560, 17822402097051182400, 2856178489894627203072, 12394040043610922716800, -5255899207995216384000000
OFFSET
0,3
FORMULA
a(n) = n! * [x^n] exp(-n*x*Sum_{k>=1} x^k/k).
a(n) = n! * Sum_{k=0..n} (-1)^k*n^(n-k)*Stirling1(k,n-k)/k!.
MATHEMATICA
Table[n! SeriesCoefficient[(1 - x)^(n x), {x, 0, n}], {n, 0, 20}]
Join[{1}, Table[n! Sum[(-1)^k n^(n - k) StirlingS1[k, n - k]/k!, {k, n}], {n, 20}]]
CROSSREFS
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Aug 30 2018
STATUS
approved