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!)
A307066 a(n) = exp(-1) * Sum_{k>=0} (n*k + 1)^n/k!. 5
1, 2, 13, 199, 5329, 216151, 12211597, 909102342, 85761187393, 9957171535975, 1390946372509101, 229587693339867567, 44117901231194922193, 9748599124579281064294, 2451233017637221706477037, 695088863051920283838281851, 220558203335628758134165860609 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = n! * [x^n] exp(exp(n*x) + x - 1).
a(n) = Sum_{k=0..n} binomial(n,k) * n^k * Bell(k).
MATHEMATICA
Table[Exp[-1] Sum[(n k + 1)^n/k!, {k, 0, Infinity}], {n, 0, 16}]
Table[n! SeriesCoefficient[Exp[Exp[n x] + x - 1], {x, 0, n}], {n, 0, 16}]
Join[{1}, Table[Sum[Binomial[n, k] n^k BellB[k], {k, 0, n}], {n, 1, 16}]]
PROG
(Magma)
A307066:= func< n | (&+[Binomial(n, k)*n^k*Bell(k): k in [0..n]]) >;
[A307066(n): n in [0..31]]; // G. C. Greubel, Jan 24 2024
(SageMath)
def A307066(n): return sum(binomial(n, k)*n^k*bell_number(k) for k in range(n+1))
[A307066(n) for n in range(31)] # G. C. Greubel, Jan 24 2024
CROSSREFS
Sequence in context: A049512 A003507 A338979 * A361368 A003085 A053598
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jun 24 2019
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 24 09:42 EDT 2024. Contains 371935 sequences. (Running on oeis4.)