A064329 Generalized Catalan numbers C(-7; n).
1, 1, -6, 85, -1490, 29226, -614004, 13511709, -307448490, 7174776190, -170777485556, 4130050311234, -101192982385844, 2506610481299380, -62668163792277840, 1579300030107459885, -40076101342241993370
Offset: 0
Links
- G. C. Greubel, Table of n, a(n) for n = 0..690
Programs
-
Magma
R
:=PowerSeriesRing(Rationals(), 30); Coefficients(R!( (15 +Sqrt(1+28*x))/(2*(8-x)) )); // G. C. Greubel, May 03 2019 -
Mathematica
CoefficientList[Series[(15 +Sqrt[1+28*x])/(2*(8-x)), {x, 0, 30}], x] (* G. C. Greubel, May 03 2019 *)
-
PARI
my(x='x+O('x^30)); Vec((15 +sqrt(1+28*x))/(2*(8-x))) \\ G. C. Greubel, May 03 2019
-
Sage
((15 +sqrt(1+28*x))/(2*(8-x))).series(x, 30).coefficients(x, sparse=False) # G. C. Greubel, May 03 2019
Comments