OFFSET
0,1
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (5, 0, 4).
FORMULA
MATHEMATICA
CoefficientList[Series[(3-2*x)/(1-5*x-4*x^3), {x, 0, 30}], x] (* G. C. Greubel, Apr 07 2021 *)
PROG
(Magma)
R<x>:=PowerSeriesRing(Integers(), 30);
Coefficients(R!( (3-2*x)/(1-5*x-4*x^3) )); // G. C. Greubel, Apr 07 2021
(Sage)
def A060927_list(prec):
P.<x> = PowerSeriesRing(ZZ, prec)
return P( (3-2*x)/(1-5*x-4*x^3) ).list()
A060927_list(30) # G. C. Greubel, Apr 07 2021
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Wolfdieter Lang, Apr 20 2001
STATUS
approved