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 A364403 #16 Oct 15 2023 09:25:51 %S A364403 1,0,0,0,1,3,6,10,18,39,91,204,435,919,1992,4434,9947,22215,49455, %T A364403 110480,248505,561930,1273610,2889666,6566736,14959083,34163511, %U A364403 78182700,179201199,411325125,945512784,2176710450,5018195400,11583688995,26770164919 %N A364403 G.f. A(x) satisfies A(x) = 1 + x^4 * (A(x) / (1 - x))^3. %F A364403 a(n) = Sum_{k=0..floor(n/4)} binomial(n-k-1,n-4*k) * binomial(3*k,k) / (2*k+1). %o A364403 (PARI) a(n) = sum(k=0, n\4, binomial(n-k-1, n-4*k)*binomial(3*k, k)/(2*k+1)); %Y A364403 Partial sums give A364552. %Y A364403 Cf. A000245, A213282, A361932. %K A364403 nonn %O A364403 0,6 %A A364403 _Seiichi Manyama_, Oct 15 2023