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!)
A338044 E.g.f.: Sum_{j>=0} 2^j * (1 - exp(-j*x))^j. 2
1, 2, 30, 1106, 75870, 8355602, 1349011230, 300225115346, 88096432294110, 32956583516814482, 15309575613991708830, 8646194423981547656786, 5834064910665307876000350, 4635347672272868599469126162, 4283458291212292843946379302430 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = Sum_{j=0..n} (-1)^(n-j) * 2^j * j^n * j! * Stirling2(n,j).
a(n) ~ c * d^n * n!^2 / sqrt(n), where d = 4.888902442941545347850916031937657541653741222401134656609725875258275714... and c = 0.4779849579705948535026794982366398948961135521828033628215401277586...
MATHEMATICA
nmax = 20; CoefficientList[Series[1 + Sum[2^j*(1 - Exp[-j*x])^j, {j, 1, nmax}], {x, 0, nmax}], x] * Range[0, nmax]!
Table[Sum[(-1)^(n-j) * 2^j * j^n * j! * StirlingS2[n, j], {j, 0, n}], {n, 1, 20}]
PROG
(PARI) a(n) = sum(k=0, n, (-1)^(n-k)*2^k*k^n*k!*stirling(n, k, 2)); \\ Seiichi Manyama, Jan 31 2022
CROSSREFS
Sequence in context: A186292 A273661 A322624 * A350719 A140174 A246741
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Oct 08 2020
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 March 28 05:39 EDT 2024. Contains 371235 sequences. (Running on oeis4.)