OFFSET
0,2
FORMULA
If g.f. satisfies A(x) = (1 + x*A(x)*(1 + x*A(x))^s)^t, then a(n) = (1/(n+1)) * Sum_{k=0..n} binomial(t*(n+1),k) * binomial(s*k,n-k).
From Seiichi Manyama, Oct 08 2025: (Start)
G.f.: (1/x) * Series_Reversion( x / (1 + x * (1 + x)^3)^2 ).
G.f.: B(x)^2, where B(x) is the g.f. of A367285. (End)
PROG
(PARI) a(n, s=3, t=2) = sum(k=0, n, binomial(t*(n+1), k)*binomial(s*k, n-k))/(n+1);
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 23 2023
STATUS
approved
