The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A356904 E.g.f. satisfies A(x)^2 * log(A(x)) = x * (exp(x) - 1). 1
1, 0, 2, 3, -32, -175, 2376, 29617, -371440, -9251919, 91421560, 4529155961, -26677647864, -3160004989271, 1541460644192, 2946529440977865, 19556193589426336, -3498019439220155551, -56274505323609293208, 5077223330715030358009 (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)} (-2*k+1)^(k-1) * Stirling2(n-k,k)/(n-k)!.
E.g.f.: A(x) = Sum_{k>=0} (-2*k+1)^(k-1) * (x * (exp(x) - 1))^k / k!.
E.g.f.: A(x) = exp( LambertW(2 * x * (exp(x) - 1))/2 ).
E.g.f.: A(x) = ( -2 * x * (1 - exp(x))/LambertW(-2 * x * (1 - exp(x))) )^(1/2).
MATHEMATICA
nmax = 19; A[_] = 1;
Do[A[x_] = Exp[((Exp[x]-1)*x)/A[x]^2] + O[x]^(nmax+1) // Normal, {nmax}];
CoefficientList[A[x], x]*Range[0, nmax]! (* Jean-François Alcover, Mar 05 2024 *)
PROG
(PARI) a(n) = n!*sum(k=0, n\2, (-2*k+1)^(k-1)*stirling(n-k, k, 2)/(n-k)!);
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(sum(k=0, N, (-2*k+1)^(k-1)*(x*(exp(x)-1))^k/k!)))
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(exp(lambertw(2*x*(exp(x)-1))/2)))
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace((-2*x*(1-exp(x))/lambertw(-2*x*(1-exp(x))))^(1/2)))
CROSSREFS
Cf. A349654.
Sequence in context: A354612 A052830 A357265 * A041895 A371117 A277481
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 June 3 08:32 EDT 2024. Contains 373054 sequences. (Running on oeis4.)