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 A371616 #16 Mar 30 2024 01:41:30 %S A371616 1,1,3,15,82,495,3147,20812,141621,985287,6976369,50108232,364202415, %T A371616 2673756449,19797659586,147677816532,1108711280376,8371222635096, %U A371616 63525564996093,484243596619753,3706268752629237,28470703720193010,219432896755734137 %N A371616 G.f. satisfies A(x) = 1 + x / (1 - x*A(x)^3)^3. %H A371616 Seiichi Manyama, <a href="/A371616/b371616.txt">Table of n, a(n) for n = 0..1000</a> %F A371616 a(n) = Sum_{k=0..n} binomial(3*(n-k)+1,k) * binomial(n+2*k-1,n-k)/(3*(n-k)+1). %o A371616 (PARI) a(n, r=1, s=3, t=0, u=3) = r*sum(k=0, n, binomial(t*k+u*(n-k)+r, k)*binomial(n+(s-1)*k-1, n-k)/(t*k+u*(n-k)+r)); %Y A371616 Cf. A364742, A367242. %Y A371616 Cf. A001764, A365113. %Y A371616 Cf. A002293, A367281. %K A371616 nonn %O A371616 0,3 %A A371616 _Seiichi Manyama_, Mar 29 2024