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!)
A305981 Expansion of e.g.f. 1/(1 + LambertW(log(1 - x))). 4
1, 1, 5, 41, 468, 6854, 122582, 2589978, 63129392, 1743732192, 53827681152, 1836453542472, 68620052332752, 2786929842106344, 122241516227220504, 5758920745460806824, 290017142065771138560, 15547326972257789803200, 883974436758296523437760, 53131928820278417749940544, 3366145488853852112016117504 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
Eric Weisstein's World of Mathematics, Lambert W-Function.
FORMULA
a(n) = Sum_{k=0..n} |Stirling1(n,k)|*k^k.
a(n) ~ n^n / ((exp(exp(-1)) - 1)^(n + 1/2) * exp(n*(1 - exp(-1)) + 1/2)). - Vaclav Kotesovec, Aug 18 2018
MAPLE
a:=series(1/(1+LambertW(log(1-x))), x=0, 21): seq(n!*coeff(a, x, n), n=0..20); # Paolo P. Lava, Mar 26 2019
MATHEMATICA
nmax = 20; CoefficientList[Series[1/(1 + LambertW[Log[1 - x]]), {x, 0, nmax}], x] Range[0, nmax]!
Join[{1}, Table[Sum[Abs[StirlingS1[n, k]] k^k, {k, n}], {n, 20}]]
PROG
(PARI) a(n) = sum(k=0, n, (-1)^(n-k)*k^k*stirling(n, k, 1)); \\ Seiichi Manyama, Feb 05 2022
(PARI) my(N=40, x='x+O('x^N)); Vec(serlaplace(1/(1+lambertw(log(1-x))))) \\ Seiichi Manyama, Feb 05 2022
CROSSREFS
Sequence in context: A049119 A367423 A332236 * A032188 A240996 A346982
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Aug 18 2018
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 25 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)