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 A365732 #16 Sep 18 2023 08:59:27 %S A365732 1,1,1,1,1,1,2,5,11,21,36,57,88,142,250,473,917,1751,3240,5829,10350, %T A365732 18472,33574,62293,117138,220932,414777,773282,1434776,2661302, %U A365732 4955167,9279325,17466103,32971057,62274094,117521503,221572762,417699772,788205724,1489975777 %N A365732 G.f. satisfies A(x) = 1 + x*A(x)*(1 + x^5*A(x)^2). %H A365732 Seiichi Manyama, <a href="/A365732/b365732.txt">Table of n, a(n) for n = 0..1000</a> %F A365732 a(n) = Sum_{k=0..floor(n/6)} binomial(n-5*k,k) * binomial(n-3*k+1,n-5*k) / (n-3*k+1) = Sum_{k=0..floor(n/6)} binomial(n-3*k,3*k) * binomial(3*k,k) / (2*k+1). %o A365732 (PARI) a(n) = sum(k=0, n\6, binomial(n-5*k, k)*binomial(n-3*k+1, n-5*k)/(n-3*k+1)); %Y A365732 Cf. A000108, A071879, A364552, A365252. %Y A365732 Cf. A001764, A365734. %K A365732 nonn %O A365732 0,7 %A A365732 _Seiichi Manyama_, Sep 17 2023