OFFSET
0,2
FORMULA
E.g.f.: B(x)^2, where B(x) is the e.g.f. of A377424.
a(n) = (2/(4*n+2)!) * Sum_{k=0..n} (4*n+k+1)! * Stirling2(n,k).
a(n) ~ s^2 * n^(n-1) / (sqrt(2*r*s^2*(1 + 2*sqrt(s) + 4*r*s^(5/2)) - 1/2) * exp(n) * r^(n - 1/2)), where r = 0.0748939908815585832730777084358761067999141964960... and s = 1.51231153615975129726667843163402807258242679877... are roots of the system of equations s*(2 - exp(r*s^2))^2 = 1, 4*exp(r*s^2)*r*s^(5/2) = 1. - Vaclav Kotesovec, Feb 05 2026
MATHEMATICA
Table[2/(4*n+2)! * Sum[(4*n+k+1)! * StirlingS2[n, k], {k, 0, n}], {n, 0, 20}] (* Vaclav Kotesovec, Feb 02 2026 *)
PROG
(PARI) a(n) = 2*sum(k=0, n, (4*n+k+1)!*stirling(n, k, 2))/(4*n+2)!;
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Oct 28 2024
STATUS
approved
