login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A200312
a(n) = A000108(n)*A006130(n), where A000108 is the Catalan numbers and A006130(n) = A006130(n-1) + 3*A006130(n-2).
2
1, 1, 8, 35, 266, 1680, 12804, 93093, 726440, 5635058, 45063668, 362121760, 2955642508, 24284658100, 201428123040, 1680921310635, 14119413718770, 119205791509200, 1011387051005100, 8617021562542470, 73704123363739440, 632601537174078420
OFFSET
0,3
COMMENTS
More generally, given {S} such that: S(n) = b*S(n-1) + c*S(n-2), S(0)=1, |b|>0, |c|>0, then Sum_{n>=0} S(n)*Catalan(n)*x^n = sqrt( (1-2*b*x - sqrt(1-4*b*x-16*c*x^2))/(2*b^2+8*c) )/x.
FORMULA
G.f.: sqrt( (1-2*x - sqrt(1-4*x-48*x^2))/26 )/x.
G.f.: (1/x)*Series_Reversion( x*sqrt(1-12*x^2) - x^2 ).
G.f.: (1/x)*Series_Reversion( x-x^2 - 6*x^3*Sum_{n>=0} A000108(n)*3^n*x^(2*n) ).
G.f. satisfies: A(x) = sqrt(1 + 2*x*A(x)^2 + 13*x^2*A(x)^4).
Conjecture: n*(n+1)*a(n) -2*n*(2*n-1)*a(n-1) -12*(2*n-1)*(2*n-3)*a(n-2) = 0. - R. J. Mathar, Nov 17 2011
a(n) = ( ((1+sqrt(13))/2)^(n+1) - ((1-sqrt(13))/2)^(n+1) )/sqrt(13) * binomial(2*n+1,n)/(2*n+1). - Paul D. Hanna, Sep 25 2012
0 = +a(n)*(+110592*a(n+3) -9216*a(n+4) -7392*a(n+5) +858*a(n+6)) +a(n+1)*(+6912*a(n+3) -1968*a(n+4) -910*a(n+5) +154*a(n+6)) +a(n+2)*(-240*a(n+3) -2*a(n+4) +41*a(n+5) -4*a(n+6)) +a(n+3)*(+6*a(n+3) +5*a(n+4) +3*a(n+5) -a(n+6)) for all n in Z. - Michael Somos, Jul 28 2018
EXAMPLE
G.f.: A(x) = 1 + x + 2*4*x^2 + 5*7*x^3 + 14*19*x^4 + 42*40*x^5 + 132*97*x^6 + 429*217*x^7 + ... + A000108(n)*A006130(n)*x^n + ...
where the g.f. of A006130, F(x) = 1/(1-x-3*x^2), begins:
F(x) = 1 + x + 4*x^2 + 7*x^3 + 19*x^4 + 40*x^5 + 97*x^6 + 217*x^7 + ...
MATHEMATICA
CoefficientList[Series[Sqrt[(1 - 2*x - Sqrt[1 - 4*x - 48*x^2])/26]/x, {x, 0, 30}], x] (* G. C. Greubel, Jul 27 2018 *)
PROG
(PARI) {a(n)=binomial(2*n, n)/(n+1)*polcoeff(1/(1-x-3*x^2+x*O(x^n)), n)}
(PARI) {a(n)=polcoeff(sqrt((1-2*x - sqrt(1-4*x-48*x^2+x^3*O(x^n)))/26)/x, n)}
(PARI) {a(n)=polcoeff(serreverse(x*sqrt(1-12*x^2+x^2*O(x^n)) - x^2)/x, n)}
(PARI) {a(n)=polcoeff((1/x)*serreverse(x-x^2 - 6*x^3*sum(m=0, n\2, binomial(2*m, m)/(m+1)*3^m*x^(2*m))+x^3*O(x^n)), n)}
(Magma) m:=30; R<x>:=PowerSeriesRing(Rationals(), m); Coefficients(R!(Sqrt((1-2*x - Sqrt(1-4*x-48*x^2))/26)/x)); // G. C. Greubel, Jul 27 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Nov 16 2011
STATUS
approved