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!)
A362693 E.g.f. satisfies A(x) = exp(x + x / A(x)). 6
1, 2, 0, 8, -64, 832, -13568, 269824, -6328320, 171044864, -5235245056, 178988498944, -6760886435840, 279614956503040, -12566949343002624, 609881495812702208, -31785828867471572992, 1770660964785178279936, -104990165030126886060032 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
Eric Weisstein's World of Mathematics, Lambert W-Function.
FORMULA
E.g.f.: x / LambertW(x*exp(-x)) = exp( x + LambertW(x*exp(-x)) ).
a(n) = Sum_{k=0..n} (-k+1)^(n-1) * binomial(n,k) = 2^n * A349719(n).
MATHEMATICA
nmax = 20; A[_] = 1;
Do[A[x_] = Exp[x + 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) my(N=20, x='x+O('x^N)); Vec(serlaplace(exp(x+lambertw(x*exp(-x)))))
CROSSREFS
Cf. A349719.
Sequence in context: A326425 A349032 A308782 * A101682 A328920 A033836
KEYWORD
sign
AUTHOR
Seiichi Manyama, May 01 2023
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 31 10:49 EDT 2024. Contains 375560 sequences. (Running on oeis4.)