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!)
A357243 E.g.f. satisfies A(x)^A(x) = 1/(1 - x)^(1 - x). 2
1, 1, -2, 6, -52, 540, -7608, 129304, -2612608, 60867360, -1608663840, 47527158624, -1552431588288, 55547889458880, -2160724031160576, 90782738645280000, -4097139872604807168, 197675862365363088384, -10153243488783257091072 (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. satisfies A(x)^A(x) * (1 - x)^(1 - x) = 1.
E.g.f.: A(x) = Sum_{k>=0} (-k+1)^(k-1) * (-(1-x) * log(1-x))^k / k!.
E.g.f.: A(x) = exp( LambertW(-(1-x) * log(1-x)) ).
E.g.f.: A(x) = -(1-x) * log(1-x)/LambertW(-(1-x) * log(1-x)).
MATHEMATICA
nmax = 20; A[_] = 1;
Do[A[x_] = ((1 - x)^(-1 + x))^(1/A[x]) + O[x]^(nmax+1) // Normal, {nmax}];
CoefficientList[A[x], x]*Range[0, nmax]! (* Jean-François Alcover, Mar 04 2024 *)
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(sum(k=0, N, (-k+1)^(k-1)*(-(1-x)*log(1-x))^k/k!)))
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(exp(lambertw(-(1-x)*log(1-x)))))
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(-(1-x)*log(1-x)/lambertw(-(1-x)*log(1-x))))
CROSSREFS
Sequence in context: A027263 A320453 A277477 * A277363 A156340 A337510
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 April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)