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

A356811
a(n) = Sum_{k=0..n} (k*n+1)^(n-k) * binomial(n,k).
4
1, 2, 8, 71, 1040, 22457, 676000, 26861977, 1347932416, 82873789793, 6114540967424, 532596023373713, 53990083205042176, 6289985311473281329, 833180470332123750400, 124356049859476364116193, 20754548375601491155681280, 3847574240184742568296430273
OFFSET
0,2
LINKS
FORMULA
a(n) = n! * [x^n] exp( x * (exp(n * x) + 1) ).
a(n) = [x^n] Sum_{k>=0} x^k / (1 - (n*k+1)*x)^(k+1).
PROG
(PARI) a(n) = sum(k=0, n, (k*n+1)^(n-k)*binomial(n, k));
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 29 2022
STATUS
approved