OFFSET
0,2
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..1000
FORMULA
MATHEMATICA
CoefficientList[Series[1/(Sqrt[1-4*x] +Sqrt[1-2*x-3*x^2] -1), {x, 0, 30} ], x] (* G. C. Greubel, Mar 08 2017 *)
PROG
(PARI) my(x='x+O('x^30)); Vec(1/(sqrt(1-4*x) + sqrt(1-2*x-3*x^2) - 1)) \\ G. C. Greubel, Mar 08 2017
(Magma) R<x>:=PowerSeriesRing(Rationals(), 30); Coefficients(R!( 1/(Sqrt(1-4*x) + Sqrt(1-2*x-3*x^2) - 1) )); // G. C. Greubel, May 06 2019
(Sage) (1/(sqrt(1-4*x) + sqrt(1-2*x-3*x^2) - 1)).series(x, 30).coefficients(x, sparse=False) # G. C. Greubel, May 06 2019
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Paul Barry, Feb 03 2006
STATUS
approved