login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
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
Sequence in context: A294038 A175701 A227866 * A180576 A158186 A272858
KEYWORD
sign
AUTHOR
Seiichi Manyama, Aug 29 2022
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 15:20 EDT 2024. Contains 371916 sequences. (Running on oeis4.)