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

 


A135749
a(n) = Sum_{k=0..n} binomial(n,k)*(n-k)^k*k^k.
1
1, 1, 3, 19, 217, 3821, 95761, 3214975, 137501505, 7226764921, 455941716481, 33983083953611, 2954163633223969, 296027886705639973, 33823026186790043841, 4363561123325076879991, 630392564294402819207041
OFFSET
0,3
LINKS
FORMULA
a(n) = n!*[x^n] Sum_{k=0..n} exp((n-k)*x)^k * x^k/k!.
MATHEMATICA
Table[Sum[Binomial[n, k](n-k)^k k^k, {k, n}], {n, 0, 20}]+1 (* Harvey P. Dale, Oct 08 2012 *)
PROG
(PARI) a(n)=sum(k=0, n, binomial(n, k)*(n-k)^k*k^k)
(PARI) a(n)=n!*polcoeff(sum(k=0, n, exp((n-k)*k*x +x*O(x^n))*x^k/k!), n)
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Nov 27 2007
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 September 23 18:10 EDT 2024. Contains 376182 sequences. (Running on oeis4.)