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”).

A365132
G.f. satisfies A(x) = (1 + x*A(x)*(1 + x*A(x))^3)^3.
1
1, 3, 21, 163, 1410, 12954, 124197, 1228269, 12438504, 128338224, 1344328020, 14258394921, 152820980120, 1652596758738, 18008899150278, 197566103218974, 2180167982738235, 24183969704272350, 269513577777159816, 3016075156973165367, 33879382051847177781
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=3, t=3) = sum(k=0, n, binomial(t*(n+1), k)*binomial(s*k, n-k))/(n+1);
CROSSREFS
Cf. A001764.
Sequence in context: A058194 A179815 A118353 * A371817 A262977 A361375
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 23 2023
STATUS
approved