OFFSET
1,3
LINKS
G. C. Greubel, Table of n, a(n) for n = 1..1000
Index entries for linear recurrences with constant coefficients, signature (1,0,0,0,1,-1).
FORMULA
From Chai Wah Wu, May 30 2016: (Start)
a(n) = a(n-1) + a(n-5) - a(n-6), for n > 6.
G.f.: x^2*(x^4 + x^3 + 2*x^2 + 3*x + 1)/(x^6 - x^5 - x + 1). (End)
MATHEMATICA
LinearRecurrence[{1, 0, 0, 0, 1, -1}, {0, 1, 4, 6, 7, 8}, 50] (* G. C. Greubel, May 30 2016 *)
Join[{0}, Select[Range[200], MemberQ[{0, 1, 4, 6, 7}, Mod[#, 8]] &]] (* Vincenzo Librandi, May 30 2016 *)
PROG
(Magma) [n: n in [0..200] | n mod 8 in [0, 1, 4, 6, 7]]; // Vincenzo Librandi, May 30 2016
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved