The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A361065 E.g.f. satisfies A(x) = exp( (x/(1-x)) * A(x)^2 ). 11
1, 1, 7, 85, 1521, 36421, 1097743, 39968601, 1707558401, 83777885929, 4643185678551, 286930307457949, 19562851003118833, 1458832806486727725, 118121195050068075167, 10320576944751955718881, 967863775658734350214017, 96970880819175875321264209 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
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.: sqrt( -(1-x)/(2*x) * LambertW(-2*x/(1-x)) ).
a(n) ~ (1 + 2*exp(1))^(n + 1/2) * n^(n-1) / (2^(3/2) * exp(n)). - Vaclav Kotesovec, Mar 02 2023
MAPLE
A361065 := proc(n)
add((2*k+1)^(k-1)*binomial(n-1, n-k)/k!, k=0..n) ;
%*n! ;
end proc:
seq(A361065(n), n=0..10) ; # R. J. Mathar, Mar 02 2023
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(sqrt(-(1-x)/(2*x)*lambertw(-2*x/(1-x)))))
CROSSREFS
Sequence in context: A369372 A049412 A346984 * A056547 A293055 A363357
KEYWORD
nonn
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 13 12:22 EDT 2024. Contains 372519 sequences. (Running on oeis4.)