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 A365243 #11 Aug 28 2023 10:52:16 %S A365243 1,1,1,1,2,5,11,22,45,99,226,515,1168,2670,6186,14467,33985,80105, %T A365243 189636,451060,1077225,2580979,6201602,14942480,36098349,87417956, %U A365243 212159347,515937882,1257048536,3068146679,7500995555,18366760161,45037590888,110588510089 %N A365243 G.f. satisfies A(x) = 1 + x*A(x)/(1 - x^3*A(x)^2). %F A365243 a(n) = Sum_{k=0..floor(n/3)} binomial(n-2*k-1,k) * binomial(n-k+1,n-3*k)/(n-k+1). %o A365243 (PARI) a(n) = sum(k=0, n\3, binomial(n-2*k-1, k)*binomial(n-k+1, n-3*k)/(n-k+1)); %Y A365243 Cf. A101785, A106228, A112805. %K A365243 nonn %O A365243 0,5 %A A365243 _Seiichi Manyama_, Aug 28 2023