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 A365798 #18 Sep 19 2023 12:14:39 %S A365798 1,1,1,1,1,1,2,7,22,57,127,253,468,848,1618,3433,8009,19384,46264, %T A365798 106369,235179,505955,1079790,2332555,5166405,11737860,27086236, %U A365798 62676956,144074416,327837356,739787486,1663922487,3751649542,8513640107,19464624667 %N A365798 G.f. satisfies A(x) = 1 + x*A(x)*(1 + x^5*A(x)^4). %F A365798 a(n) = Sum_{k=0..floor(n/6)} binomial(n-5*k,k) * binomial(n-k+1,n-5*k) / (n-k+1) = Sum_{k=0..floor(n/6)} binomial(n-k,5*k) * binomial(5*k,k) / (4*k+1). %o A365798 (PARI) a(n) = sum(k=0, n\6, binomial(n-5*k, k)*binomial(n-k+1, n-5*k)/(n-k+1)); %Y A365798 Cf. A063019, A182454, A349311, A364539, A364522. %Y A365798 Cf. A005708, A364523, A365732, A365733. %Y A365798 Cf. A002294, A365736. %K A365798 nonn %O A365798 0,7 %A A365798 _Seiichi Manyama_, Sep 19 2023