A064331 Generalized Catalan numbers C(-9; n).
1, 1, -8, 145, -3266, 82342, -2223818, 62912809, -1840413050, 55217088622, -1689752866904, 52538652432586, -1655036407913948, 52708355827445800, -1694246075896308110, 54894923324331676345, -1790984858946499478330
Offset: 0
Links
- G. C. Greubel, Table of n, a(n) for n = 0..640
Programs
-
Magma
R
:=PowerSeriesRing(Rationals(), 30); Coefficients(R!( (19 +Sqrt(1+36*x))/(2*(10-x)) )); // G. C. Greubel, May 03 2019 -
Mathematica
CoefficientList[Series[(19 +Sqrt[1+36*x])/(2*(10-x)), {x, 0, 30}], x] (* G. C. Greubel, May 03 2019 *)
-
PARI
my(x='x+O('x^30)); Vec((19 +sqrt(1+36*x))/(2*(10-x))) \\ G. C. Greubel, May 03 2019
-
Sage
((19 +sqrt(1+36*x))/(2*(10-x))).series(x, 30).coefficients(x, sparse=False) # G. C. Greubel, May 03 2019
Comments