OFFSET
0,2
LINKS
Seiichi Manyama, Table of n, a(n) for n = 0..326
FORMULA
a(n) = (1/(n+1)) * Sum_{k=0..n} 2^(n-k) * (n-k)^k * (2*n-k)!/(k! * (n-k)!).
E.g.f. A(x) satisfies A(x) = 1/( 1 - 2*x*A(x)*exp(x*A(x)) ).
E.g.f.: B(x)^2, where B(x) is the e.g.f. of A380095.
a(n) ~ (s-1)^(n + 1/2) * s^(n+1) * n^(n-1) / (sqrt(4*s - 2 - s^2) * exp(n) * (2-s)^n), where s = 1.840999254165862013788496667520425971530532392938... is the root of the equation 2*s*(2-s) * exp((2-s)/(s-1)) = (s-1)^2. - Vaclav Kotesovec, Feb 04 2026
PROG
(PARI) a(n) = sum(k=0, n, 2^(n-k)*(n-k)^k*(2*n-k)!/(k!*(n-k)!))/(n+1);
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Dec 29 2024
STATUS
approved
