cp's OEIS Frontend

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.

A365729 G.f. satisfies A(x) = 1 + x^4*A(x)^3*(1 + x*A(x)).

This page as a plain text file.
%I A365729 #10 Sep 17 2023 10:00:00
%S A365729 1,0,0,0,1,1,0,0,3,7,4,0,12,45,55,22,55,286,546,455,413,1820,4760,
%T A365729 6120,5304,12597,38760,67830,73587,108262,309925,672980,928763,
%U A365729 1171390,2598310,6270030,10607025,14033565,24293880,57256875,112293597,167416275,255805056
%N A365729 G.f. satisfies A(x) = 1 + x^4*A(x)^3*(1 + x*A(x)).
%F A365729 a(n) = Sum_{k=0..floor(n/4)} binomial(k,n-4*k) * binomial(n-k+1,k) / (n-k+1).
%o A365729 (PARI) a(n) = sum(k=0, n\4, binomial(k, n-4*k)*binomial(n-k+1, k)/(n-k+1));
%Y A365729 Cf. A365727, A365728, A365730, A365731.
%Y A365729 Cf. A365697.
%K A365729 nonn
%O A365729 0,9
%A A365729 _Seiichi Manyama_, Sep 17 2023