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 A365246 #10 Aug 28 2023 10:52:03 %S A365246 1,1,2,6,22,88,370,1613,7230,33117,154330,729369,3487470,16840346, %T A365246 82007012,402269702,1985867630,9858739759,49187798158,246506563980, %U A365246 1240337033398,6263601365616,31734939452116,161270637750264,821802841072422,4198348868249768 %N A365246 G.f. satisfies A(x) = 1 + x*A(x)^2/(1 - x^2*A(x)^4). %F A365246 a(n) = (1/(2*n+1)) * Sum_{k=0..floor(n/2)} binomial(n-k-1,k) * binomial(2*n+1,n-2*k). %o A365246 (PARI) a(n) = sum(k=0, n\2, binomial(n-k-1, k)*binomial(2*n+1, n-2*k))/(2*n+1); %Y A365246 Cf. A364739, A365247. %K A365246 nonn %O A365246 0,3 %A A365246 _Seiichi Manyama_, Aug 28 2023