cp's OEIS Frontend

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.

A365181 G.f. satisfies A(x) = 1 + x*A(x)^4*(1 + x*A(x)^2).

This page as a plain text file.
%I A365181 #8 Aug 25 2023 09:43:48
%S A365181 1,1,5,32,237,1905,16160,142392,1290613,11955947,112697701,1077438356,
%T A365181 10422562156,101827196684,1003312506776,9958506719664,99479743121349,
%U A365181 999370184665407,10090067735619023,102330789530653912,1041997707624103589,10648963961114066129
%N A365181 G.f. satisfies A(x) = 1 + x*A(x)^4*(1 + x*A(x)^2).
%F A365181 a(n) = Sum_{k=0..n} binomial(2*n+2*k+1,k) * binomial(k,n-k)/(2*n+2*k+1).
%o A365181 (PARI) a(n) = sum(k=0, n, binomial(2*n+2*k+1, k)*binomial(k, n-k)/(2*n+2*k+1));
%Y A365181 Cf. A002294, A365178, A365180, A365182, A365183.
%K A365181 nonn
%O A365181 0,3
%A A365181 _Seiichi Manyama_, Aug 25 2023