This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A371575 #14 Mar 29 2024 15:21:39 %S A371575 1,2,15,144,1587,18942,238301,3111788,41779164,573127760,7998164674, %T A371575 113189243386,1620583793262,23431706243230,341654376602948, %U A371575 5017986762425680,74170837061591036,1102479579201183898,16469074050937364044,247115476148847822586 %N A371575 G.f. satisfies A(x) = ( 1 + x*A(x)^3 * (1 + x*A(x)) )^2. %F A371575 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). %o A371575 (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)); %Y A371575 Cf. A000108, A143927, A365153, A368961, A371574. %K A371575 nonn %O A371575 0,2 %A A371575 _Seiichi Manyama_, Mar 28 2024