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 A378787 #7 Dec 07 2024 10:41:43 %S A378787 1,2,7,36,197,1184,7425,48308,322521,2198064,15227850,106924154, %T A378787 759245463,5442675080,39335090088,286296369000,2096706604597, %U A378787 15439417451928,114243931954962,849030345258990,6334510149389409,47428709540589036,356261301882333885 %N A378787 G.f. A(x) satisfies A(x) = ( 1 + x * (1 + x*A(x)^2)^3 )^2. %F A378787 a(n) = Sum_{k=0..n} binomial(4*(n-k)+2,k) * binomial(3*k,n-k)/(2*(n-k)+1). %F A378787 G.f.: A(x) = B(x)^2 where B(x) is the g.f. of A137957. %o A378787 (PARI) a(n, r=2, s=3, t=0, u=4) = 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 A378787 Cf. A069271, A371607, A371609. %Y A378787 Cf. A137957. %K A378787 nonn %O A378787 0,2 %A A378787 _Seiichi Manyama_, Dec 07 2024