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

%I #18 Apr 22 2024 03:44:09

%S 1,1,-1,13,-127,2101,-41801,1030177,-29820127,995977801,-37660751569,

%T 1590847310581,-74242656468575,3793664894534269,-210656932372422745,

%U 12630986901470435401,-813335155262348743231,55977540398642247218449

%N E.g.f. satisfies A(x) = exp( x/((1-x) * A(x)^2) ).

%H Winston de Greef, <a href="/A361068/b361068.txt">Table of n, a(n) for n = 0..360</a>

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/LambertW-Function.html">Lambert W-Function</a>.

%F a(n) = n! * Sum_{k=0..n} (-2*k+1)^(k-1) * binomial(n-1,n-k)/k!.

%F E.g.f.: exp( LambertW(2*x/(1-x))/2 ).

%F E.g.f.: 1 / sqrt( (1-x)/(2*x) * LambertW(2*x/(1-x)) ).

%F 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

%t nmax = 20; A[_] = 1;

%t Do[A[x_] = Exp[x/((1 - x)*A[x]^2)] + O[x]^(nmax+1) // Normal, {nmax}];

%t CoefficientList[A[x], x]*Range[0, nmax]! (* _Jean-François Alcover_, Mar 04 2024 *)

%o (PARI) a(n) = n!*sum(k=0, n, (-2*k+1)^(k-1)*binomial(n-1, n-k)/k!);

%o (PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(exp(lambertw(2*x/(1-x))/2)))

%o (PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(1/sqrt((1-x)/(2*x)*lambertw(2*x/(1-x)))))

%Y Cf. A052868, A361065, A361066, A361067, A361069.

%K sign

%O 0,4

%A _Seiichi Manyama_, Mar 01 2023

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 29 19:56 EDT 2024. Contains 375518 sequences. (Running on oeis4.)