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 A365730 #11 Sep 17 2023 10:05:28 %S A365730 1,0,0,0,1,1,0,0,4,9,5,0,22,78,91,35,140,680,1224,969,1254,5985,14630, %T A365730 17710,17710,55660,164450,269100,299520,593775,1805076,3681405, %U A365730 4951692,7594752,20173560,47303520,76404460,110676324,239784864,589602585,1106339923 %N A365730 G.f. satisfies A(x) = 1 + x^4*A(x)^4*(1 + x*A(x)). %F A365730 a(n) = (1/(n+1)) * Sum_{k=0..floor(n/4)} binomial(k,n-4*k) * binomial(n+1,k). %o A365730 (PARI) a(n) = sum(k=0, n\4, binomial(k, n-4*k)*binomial(n+1, k))/(n+1); %Y A365730 Cf. A365727, A365728, A365729, A365731. %Y A365730 Cf. A001005, A001006, A365724. %Y A365730 Cf. A215341. %K A365730 nonn %O A365730 0,9 %A A365730 _Seiichi Manyama_, Sep 17 2023