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!)
A361068 E.g.f. satisfies A(x) = exp( x/((1-x) * A(x)^2) ). 10
1, 1, -1, 13, -127, 2101, -41801, 1030177, -29820127, 995977801, -37660751569, 1590847310581, -74242656468575, 3793664894534269, -210656932372422745, 12630986901470435401, -813335155262348743231, 55977540398642247218449 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
Eric Weisstein's World of Mathematics, Lambert W-Function.
FORMULA
a(n) = n! * Sum_{k=0..n} (-2*k+1)^(k-1) * binomial(n-1,n-k)/k!.
E.g.f.: exp( LambertW(2*x/(1-x))/2 ).
E.g.f.: 1 / sqrt( (1-x)/(2*x) * LambertW(2*x/(1-x)) ).
a(n) ~ (-1)^(n+1) * 2^(-3/2) * exp(-1/2) * (2 - exp(-1))^(n + 1/2) * n^(n-1). - Vaclav Kotesovec, Apr 22 2024
MATHEMATICA
nmax = 20; A[_] = 1;
Do[A[x_] = 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 04 2024 *)
PROG
(PARI) a(n) = n!*sum(k=0, n, (-2*k+1)^(k-1)*binomial(n-1, n-k)/k!);
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(exp(lambertw(2*x/(1-x))/2)))
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(1/sqrt((1-x)/(2*x)*lambertw(2*x/(1-x)))))
CROSSREFS
Sequence in context: A124298 A201040 A201550 * A211897 A147669 A076457
KEYWORD
sign
AUTHOR
Seiichi Manyama, Mar 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 May 12 10:09 EDT 2024. Contains 372452 sequences. (Running on oeis4.)