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.

A265612 a(n) = CatalanNumber(n+1)*n*(1+3*n)/(6+2*n).

This page as a plain text file.
%I A265612 #29 Oct 09 2017 14:36:32
%S A265612 0,1,7,35,156,660,2717,11011,44200,176358,700910,2778446,10994920,
%T A265612 43459650,171655785,677688675,2674776720,10555815270,41656918050,
%U A265612 164401379610,648887951400,2561511781920,10113397410402,39937416869070,157743149913776,623178050662300
%N A265612 a(n) = CatalanNumber(n+1)*n*(1+3*n)/(6+2*n).
%C A265612 This is row n=7 in the array A(n,k) = (rf(k+n-2,k-1)-(k-1)*(k-2)*rf(k+n-2, k-3))/ (k-1)! if n>=3 and A(n,0)=0, A(n,1)=1, A(n,2)=n; rf(n,k) denotes the rising factorial. See the cross-references for other values of n and the table in A264357.
%H A265612 G. C. Greubel, <a href="/A265612/b265612.txt">Table of n, a(n) for n = 0..1000</a>
%F A265612 G.f.: (5*x+(I*(x-1)*(7*x-2))/sqrt(4*x-1)-2-x^2)/(2*x^3).
%F A265612 a(n) = 2*4^n*Gamma(3/2+n)*n*(1+3*n)/(sqrt(Pi)*Gamma(4+n)).
%F A265612 a(n) = (rf(5+n, n-1)-(n-1)*(n-2)*rf(5+n, n-3))/(n-1)! for n>=3, rf(n,k) the rising factorial.
%F A265612 a(n) = a(n-1)*(2*n*(1+3*n)*(1+2*n)/((n-1)*(3*n-2)*(3+n))) for n>=2.
%F A265612 a(n) ~  4^n*(6-(127/4)/n+(7995/64)/n^2-(223405/512)/n^3+(23501457/16384)/n^4-...) /sqrt(n*Pi).
%F A265612 a(n) = [x^n] x*(1 + x)/(1 - x)^(n+4). - _Ilya Gutkovskiy_, Oct 09 2017
%p A265612 A265612 := n -> 2*4^n*GAMMA(3/2+n)*n*(1+3*n)/(sqrt(Pi)*GAMMA(4+n)):
%p A265612 seq(simplify(A265612(n)), n=0..25);
%t A265612 Table[SeriesCoefficient[(5 x + (I (x - 1) (7 x - 2))/Sqrt[4 x - 1] - 2 - x^2)/(2 x^3), {x, 0, n}], {n, 0, 25}] (* or *)
%t A265612 Table[2*4^n Gamma[3/2 + n] n (1 + 3 n)/(Sqrt[Pi] Gamma[4 + n]), {n, 0, 25}] (* or *)
%t A265612 Table[CatalanNumber[n + 1] n ((1 + 3 n)/(6 + 2 n)), {n, 0, 25}] (* _Michael De Vlieger_, Dec 15 2015 *)
%o A265612 (Sage)
%o A265612 a = lambda n: catalan_number(n+1)*n*(1+3*n)/(6+2*n)
%o A265612 [a(n) for n in range(26)]
%o A265612 (PARI) for(n=0,25, print1(round(2*4^n*gamma(3/2+n)*n*(1+3*n)/(sqrt(Pi)*gamma(4+n))), ", ")) \\ _G. C. Greubel_, Feb 06 2017
%Y A265612 Cf. A000108, A007946, A097613, A051960, A029651, A051924, A129869, A220101, A264357, A265613.
%K A265612 nonn
%O A265612 0,3
%A A265612 _Peter Luschny_, Dec 15 2015