OFFSET
1,3
LINKS
Vincenzo Librandi, 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
G.f.: x^2*(1+x+x^2+3*x^3+x^4)/((1-x)^2*(1+x+x^2+x^3+x^4)). [Colin Barker, May 14 2012]
a(n) = a(n-1) + a(n-5) - a(n-6) for n > 6. - Vincenzo Librandi, May 15 2012
a(n) = (7*n - 5 - 2*(n mod 5))/5. - Wesley Ivan Hurt, Dec 28 2016
MATHEMATICA
Select[Range[0, 400], MemberQ[{0, 1, 2, 3, 6}, Mod[#, 7]]&] (* Vincenzo Librandi, May 15 2012 *)
PROG
(Magma) I:=[0, 1, 2, 3, 6, 7]; [n le 6 select I[n] else Self(n-1)+Self(n-5)-Self(n-6): n in [1..70]]; // Vincenzo Librandi, May 15 2012
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved