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(3*x*A(x)/(1-x*A(x))).
E.g.f.: exp(3 * B(x)), where B(x) is the e.g.f. of A376094.
E.g.f.: C(x)^3, where C(x) is the e.g.f. of A361094.
a(n) = 3 * n! * Sum_{k=0..n} (3*n+3)^(k-1) * binomial(n-1,n-k)/k!.
a(n) ~ (sqrt(21) - 3) * 2^(n - 1/2) * exp((sqrt(21) - 3 + (sqrt(21) - 5)*n)/2) * n^(n-1) / (21^(1/4) * (5 - sqrt(21))^(n + 1/2)). - Vaclav Kotesovec, Oct 25 2025
MATHEMATICA
Table[3 * n! * Sum[(3*n+3)^(k-1) * Binomial[n-1, n-k]/k!, {k, 0, n}], {n, 0, 20}] (* Vaclav Kotesovec, Oct 25 2025 *)
PROG
(PARI) a(n, q=3, r=3, s=3, 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) [3*Factorial(n) * &+[(3*n+3)^(k-1)*Binomial(n-1, n-k) / Factorial(k) : k in [0..n]] : n in [0..25] ]; // Vincenzo Librandi, Nov 29 2025
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Oct 25 2025
STATUS
approved
