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 A360057 #28 Mar 11 2023 08:09:11 %S A360057 1,6,27,125,644,3643,21974,138395,898695,5970927,40386209,277127148, %T A360057 1924349756,13496536510,95467320600,680260392219,4878382821267, %U A360057 35182209381590,255000022472565,1856501085686340,13570366067586294,99554601986349471,732756800760507312 %N A360057 a(n) = Sum_{k=0..n} binomial(n+4*k+4,n-k) * Catalan(k). %F A360057 a(n) = binomial(n+4,4) + Sum_{k=0..n-1} a(k) * a(n-k-1). %F A360057 G.f. A(x) satisfies A(x) = 1/(1-x)^5 + x * A(x)^2. %F A360057 G.f.: 2 / ( (1-x)^5 * (1 + sqrt( 1 - 4*x/(1-x)^5 )) ). %F A360057 D-finite with recurrence (n+1)*a(n) +2*(-5*n+1)*a(n-1) +(19*n-11)*a(n-2) +20*(-n+2)*a(n-3) +15*(n-3)*a(n-4) +6*(-n+4)*a(n-5) +(n-5)*a(n-6)=0. - _R. J. Mathar_, Jan 25 2023 %o A360057 (PARI) a(n) = sum(k=0, n, binomial(n+4*k+4, n-k)*binomial(2*k, k)/(k+1)); %o A360057 (PARI) my(N=30, x='x+O('x^N)); Vec(2/((1-x)^5*(1+sqrt(1-4*x/(1-x)^5)))) %Y A360057 Cf. A086616, A162481, A358518. %Y A360057 Cf. A000108, A360047. %K A360057 nonn %O A360057 0,2 %A A360057 _Seiichi Manyama_, Jan 23 2023