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!)
A371142 E.g.f. satisfies A(x) = 1 + x*A(x)^2 * (exp(x) - 1). 1
1, 0, 2, 3, 52, 245, 4446, 40327, 823432, 11539593, 269030530, 5151458411, 137198342700, 3328477618765, 100753779655270, 2948537330575215, 100684293424304656, 3437897124964763921, 131334298073705194506, 5110990692709364143219, 216634434142329948020020 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
E.g.f.: 2/(1 + sqrt(1-4*x*(exp(x)-1))).
a(n) = n! * Sum_{k=0..floor(n/2)} (2*k)!/(k+1)! * Stirling2(n-k,k)/(n-k)!.
a(n) ~ sqrt(2 + 2*r + 8*r^2) * n^(n-1) / (exp(n) * r^n), where r = 0.4454633431717774246390371283449007888959504623839... is the positive real root of the equation 4*r*(exp(r) - 1) = 1. - Vaclav Kotesovec, Mar 12 2024
MATHEMATICA
nmax = 20; CoefficientList[Series[(1 - Sqrt[1 + 4*x - 4*E^x*x]) / (2*(-x + E^x*x)), {x, 0, nmax}], x] * Range[0, nmax]! (* Vaclav Kotesovec, Mar 12 2024 *)
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(2/(1+sqrt(1-4*x*(exp(x)-1)))))
(PARI) a(n) = n!*sum(k=0, n\2, (2*k)!/(k+1)!*stirling(n-k, k, 2)/(n-k)!);
CROSSREFS
Cf. A371140.
Sequence in context: A355648 A347894 A362836 * A337057 A371119 A371262
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Mar 12 2024
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 1 17:43 EDT 2024. Contains 372175 sequences. (Running on oeis4.)