OFFSET
0,2
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..300
FORMULA
E.g.f. A(x) satisfies A(x) = exp(2*x*A(x)/(1-x*A(x))).
E.g.f.: exp(2 * B(x)), where B(x) is the e.g.f. of A376093.
E.g.f.: C(x)^2, where C(x) is the e.g.f. of A361093.
a(n) = 2 * n! * Sum_{k=0..n} (2*n+2)^(k-1) * binomial(n-1,n-k)/k!.
a(n) ~ exp(sqrt(3) - 1 - (2 - sqrt(3))*n) * n^(n-1) / (3^(1/4) * (2 - sqrt(3))^n). - Vaclav Kotesovec, Oct 25 2025
MATHEMATICA
Table[2 * n! * Sum[(2*n+2)^(k-1) * Binomial[n-1, n-k]/k!, {k, 0, n}], {n, 0, 20}] (* Vaclav Kotesovec, Oct 25 2025 *)
PROG
(PARI) a(n, q=2, r=2, s=2, t=1, u=0) = q*n!*sum(k=0, n, (r*n+(s-r)*k+q)^(k-1)*binomial((r*u+1)*n+((s-r)*u+t-1)*k+q*u-1, n-k)/k!);
(Magma) [2*Factorial(n) * &+[(2*n+2)^(k-1)*Binomial(n-1, n-k) / Factorial(k) : k in [0..n]] : n in [0..25] ]; // Vincenzo Librandi, Nov 28 2025
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Oct 25 2025
STATUS
approved
