A064333 Generalized Catalan numbers C(-11; n).
1, 1, -10, 221, -6082, 187386, -6184848, 213843477, -7645509706, 280351640702, -10485617230780, 398467433529298, -15341431926699284, 597149747213056324, -23459916801814723548, 929028306450848244741, -37045540042729366580442
Offset: 0
Links
- G. C. Greubel, Table of n, a(n) for n = 0..600
Programs
-
Magma
R
:=PowerSeriesRing(Rationals(), 30); Coefficients(R!( (23 +Sqrt(1+44*x))/(2*(12-x)) )); // G. C. Greubel, May 03 2019 -
Mathematica
CoefficientList[Series[(23 +Sqrt[1+44*x])/(2*(12-x)), {x, 0, 30}], x] (* G. C. Greubel, May 03 2019 *)
-
PARI
my(x='x+O('x^30)); Vec((23 +sqrt(1+44*x))/(2*(12-x))) \\ G. C. Greubel, May 03 2019
-
Sage
((23 +sqrt(1+44*x))/(2*(12-x))).series(x, 30).coefficients(x, sparse=False) # G. C. Greubel, May 03 2019
Comments