OFFSET
0,3
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (1,1,-1,0,1,-1,-1,1).
FORMULA
G.f.: (1+x^5)/((1-x^2)^2*(1-x^5)). - G. C. Greubel, Sep 12 2019
MAPLE
seq(coeff(series((1+x^5)/((1-x^2)^2*(1-x^5)), x, n+1), x, n), n = 0..70); # G. C. Greubel, Sep 12 2019
MATHEMATICA
CoefficientList[Series[(1+x^5)/((1-x^2)^2*(1-x^5)), {x, 0, 70}], x] (* or *) LinearRecurrence[{1, 1, -1, 0, 1, -1, -1, 1}, {1, 0, 2, 0, 3, 2, 4, 4}, 70] (* G. C. Greubel, Sep 12 2019 *)
PROG
(PARI) my(x='x+O('x^70)); Vec((1+x^5)/((1-x^2)^2*(1-x^5))) \\ G. C. Greubel, Sep 12 2019
(Magma) R<x>:=PowerSeriesRing(Integers(), 70); Coefficients(R!( (1+x^5)/((1-x^2)^2*(1-x^5)) )); // G. C. Greubel, Sep 12 2019
(Sage)
def A008807_list(prec):
P.<x> = PowerSeriesRing(ZZ, prec)
return P((1+x^5)/((1-x^2)^2*(1-x^5))).list()
A008807_list(70) # G. C. Greubel, Sep 12 2019
(GAP) a:=[1, 0, 2, 0, 3, 2, 4, 4];; for n in [9..70] do a[n]:=a[n-1]+a[n-2]-a[n-3]+a[n-5]-a[n-6]-a[n-7]+a[n-8]; od; a; # G. C. Greubel, Sep 12 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
More terms added by G. C. Greubel, Sep 12 2019
STATUS
approved