OFFSET
0,2
COMMENTS
Hankel transform is (-6)^n.
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..1000
FORMULA
a(n) = Sum_{k=0..n} A039599(n,k)*(-7)^k.
G.f.: 1/(4 - 3*sqrt(1-4*x)). - G. C. Greubel, May 31 2019
MAPLE
c:=(1-sqrt(1-4*x))/2/x: ser:=series(1/(1+6*x*c), x=0, 27): seq(coeff(ser, x, n), n=0..23); # Emeric Deutsch, Mar 23 2007
MATHEMATICA
CoefficientList[Series[1/(4-3*Sqrt[1-4*x]), {x, 0, 30}], x] (* G. C. Greubel, May 31 2019 *)
PROG
(PARI) my(x='x+O('x^30)); Vec(1/(4-3*sqrt(1-4*x))) \\ G. C. Greubel, May 31 2019
(Magma) R<x>:=PowerSeriesRing(Rationals(), 30); Coefficients(R!( 1/(4 - 3*Sqrt(1-4*x)) )); // G. C. Greubel, May 31 2019
(Sage) (1/(4-3*sqrt(1-4*x))).series(x, 30).coefficients(x, sparse=False) # G. C. Greubel, May 31 2019
CROSSREFS
KEYWORD
sign
AUTHOR
Philippe Deléham, Mar 21 2007
EXTENSIONS
More terms from Emeric Deutsch, Mar 23 2007
STATUS
approved