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!)
A362380 E.g.f. satisfies A(x) = exp(x + 3*x^2/2 * A(x)). 5
1, 1, 4, 19, 154, 1456, 18136, 260002, 4430812, 85170988, 1854422236, 44693165716, 1188169271488, 34434053438968, 1082632555160248, 36666259172292016, 1331754793762045456, 51622725829298301520, 2127683533625205288400 (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.: exp(x - LambertW(-3*x^2/2 * exp(x))) = -2 * LambertW(-3*x^2/2 * exp(x))/(3*x^2).
a(n) = n! * Sum_{k=0..floor(n/2)} (3/2)^k * (k+1)^(n-k-1) / (k! * (n-2*k)!).
MATHEMATICA
nmax = 20; A[_] = 1;
Do[A[x_] = Exp[x + 3*x^2/2*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(-3*x^2/2*exp(x)))))
CROSSREFS
Column k=3 of A362377.
Cf. A362397.
Sequence in context: A067577 A225904 A203010 * A249785 A341379 A155804
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Apr 20 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 September 18 05:30 EDT 2024. Contains 375995 sequences. (Running on oeis4.)