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

A371575
G.f. satisfies A(x) = ( 1 + x*A(x)^3 * (1 + x*A(x)) )^2.
2
1, 2, 15, 144, 1587, 18942, 238301, 3111788, 41779164, 573127760, 7998164674, 113189243386, 1620583793262, 23431706243230, 341654376602948, 5017986762425680, 74170837061591036, 1102479579201183898, 16469074050937364044, 247115476148847822586
OFFSET
0,2
FORMULA
If g.f. satisfies A(x) = ( 1 + x*A(x)^(t/r) * (1 + x*A(x)^(u/r))^s )^r, then a(n) = r * Sum_{k=0..n} binomial(t*k+u*(n-k)+r,k) * binomial(s*k,n-k)/(t*k+u*(n-k)+r).
PROG
(PARI) a(n, r=2, s=1, t=6, u=2) = r*sum(k=0, n, binomial(t*k+u*(n-k)+r, k)*binomial(s*k, n-k)/(t*k+u*(n-k)+r));
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Mar 28 2024
STATUS
approved