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 A365723 #10 Sep 17 2023 10:11:06 %S A365723 1,0,0,1,1,0,2,5,3,5,21,28,26,84,180,207,385,990,1562,2288,5278,10439, %T A365723 15925,30212,64738,112268,192780,396338,761634,1317840,2512940, %U A365723 5015867,9146049,16729462,32927950,62851525,115101637,220051350,427898900,800956600,1505524800 %N A365723 G.f. satisfies A(x) = 1 + x^3*A(x)^2*(1 + x*A(x)). %F A365723 a(n) = Sum_{k=0..floor(n/3)} binomial(k,n-3*k) * binomial(n-k+1,k) / (n-k+1). %o A365723 (PARI) a(n) = sum(k=0, n\3, binomial(k, n-3*k)*binomial(n-k+1, k)/(n-k+1)); %Y A365723 Cf. A308616, A365724, A365725, A365726. %Y A365723 Cf. A365694. %K A365723 nonn %O A365723 0,7 %A A365723 _Seiichi Manyama_, Sep 17 2023