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!)
A356902 E.g.f. satisfies A(x) * log(A(x)) = x * (exp(x) - 1). 2
1, 0, 2, 3, -8, -55, 276, 4417, -13488, -639567, -248300, 141842921, 797525400, -43103642855, -584650622724, 16366430341185, 436555007091616, -6909610676492959, -368240758971238620, 2371795171252419385, 354876368637537736680, 1050192150132691993161 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
Eric Weisstein's World of Mathematics, Lambert W-Function.
FORMULA
a(n) = n! * Sum_{k=0..floor(n/2)} (-k+1)^(k-1) * Stirling2(n-k,k)/(n-k)!.
E.g.f.: A(x) = Sum_{k>=0} (-k+1)^(k-1) * (x * (exp(x) - 1))^k / k!.
E.g.f.: A(x) = exp( LambertW(x * (exp(x) - 1)) ).
E.g.f.: A(x) = -x * (1 - exp(x))/LambertW(-x * (1 - exp(x))).
MATHEMATICA
nmax = 21; A[_] = 1;
Do[A[x_] = Exp[(Exp[x] - 1)*x/A[x]] + O[x]^(nmax+1) // Normal, {nmax}];
CoefficientList[A[x], x]*Range[0, nmax]! (* Jean-François Alcover, Mar 04 2024 *)
PROG
(PARI) a(n) = n!*sum(k=0, n\2, (-k+1)^(k-1)*stirling(n-k, k, 2)/(n-k)!);
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(sum(k=0, N, (-k+1)^(k-1)*(x*(exp(x)-1))^k/k!)))
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(lambertw(x*(exp(x)-1)))))
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(-x*(1-exp(x))/lambertw(-x*(1-exp(x)))))
CROSSREFS
Cf. A349583.
Sequence in context: A340486 A245384 A292893 * A042365 A329496 A160634
KEYWORD
sign
AUTHOR
Seiichi Manyama, Sep 03 2022
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 August 28 16:44 EDT 2024. Contains 375508 sequences. (Running on oeis4.)