login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A365130
G.f. satisfies A(x) = (1 + x*A(x)*(1 + x*A(x))^2)^3.
1
1, 3, 18, 124, 945, 7650, 64592, 562419, 5013645, 45530725, 419735784, 3917714430, 36949853641, 351597275136, 3371317098546, 32542166997655, 315962469096855, 3083729075615055, 30236064140642514, 297698542934231016, 2942082095638037148
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).
PROG
(PARI) a(n, s=2, t=3) = sum(k=0, n, binomial(t*(n+1), k)*binomial(s*k, n-k))/(n+1);
CROSSREFS
Cf. A137953.
Sequence in context: A305869 A371483 A181998 * A349024 A176277 A289429
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 23 2023
STATUS
approved