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!)
A295623 a(n) = n! * [x^n] exp(n*x*exp(x)). 2
1, 1, 8, 90, 1424, 28900, 716292, 20972098, 708317248, 27108056808, 1159375192100, 54799938951934, 2836735081572240, 159606310760007436, 9698172715195196260, 632924646574215596850, 44153807025286701187328, 3278903858941755472870864, 258247909552273997037934788 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
N. J. A. Sloane, Transforms
FORMULA
a(n) = n! * [x^n] exp(n*Sum_{k>=1} x^k/(k - 1)!).
From Seiichi Manyama, Jul 05 2022: (Start)
a(n) = [x^n] Sum_{k>=0} (n * x)^k/(1 - k*x)^(k+1).
a(n) = Sum_{k=0..n} n^k * k^(n-k) * binomial(n,k). (End)
MATHEMATICA
Table[n! SeriesCoefficient[Exp[n x Exp[x]], {x, 0, n}], {n, 0, 18}]
Table[Sum[BellY[n, k, n Range[n]], {k, 0, n}], {n, 0, 18}]
PROG
(PARI) a(n) = sum(k=0, n, n^k*k^(n-k)*binomial(n, k)); \\ Seiichi Manyama, Jul 04 2022
CROSSREFS
Sequence in context: A331512 A092956 A345876 * A319174 A034667 A372434
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Nov 24 2017
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 September 3 23:03 EDT 2024. Contains 375679 sequences. (Running on oeis4.)