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!)
A357246 E.g.f. satisfies A(x) * log(A(x)) = (1-x) * (exp(x) - 1). 1
1, 1, -2, 5, -49, 497, -6926, 116510, -2325422, 53538315, -1397740279, 40792008435, -1316056239994, 46509292766172, -1786748828967402, 74139054468535061, -3304409577659864305, 157444695280699565069, -7986085592316390890618, 429645521271113815480246 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
Eric Weisstein's World of Mathematics, Lambert W-Function.
FORMULA
E.g.f.: A(x) = Sum_{k>=0} (-k+1)^(k-1) * ((1-x) * (exp(x) - 1))^k / k!.
E.g.f.: A(x) = exp( LambertW((1-x) * (exp(x) - 1)) ).
E.g.f.: A(x) = (1-x) * (exp(x) - 1)/LambertW((1-x) * (exp(x) - 1)).
MATHEMATICA
nmax = 19; A[_] = 1;
Do[A[x_] = Exp[-(((Exp[x]-1)*(x-1))/A[x])]+O[x]^(nmax+1)//Normal, {nmax}];
CoefficientList[A[x], x]*Range[0, nmax]! (* Jean-François Alcover, Mar 05 2024 *)
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(sum(k=0, N, (-k+1)^(k-1)*((1-x)*(exp(x)-1))^k/k!)))
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(exp(lambertw((1-x)*(exp(x)-1)))))
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace((1-x)*(exp(x)-1)/lambertw((1-x)*(exp(x)-1))))
CROSSREFS
Sequence in context: A093552 A060808 A099658 * A244014 A102011 A328151
KEYWORD
sign
AUTHOR
Seiichi Manyama, Sep 19 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 September 9 19:10 EDT 2024. Contains 375765 sequences. (Running on oeis4.)