OFFSET
0,9
COMMENTS
a(n+7) equals the number of n-length binary words avoiding runs of zeros of lengths 7i+6, (i=0,1,2,...). - Milan Janjic, Feb 26 2015
LINKS
Index entries for linear recurrences with constant coefficients, signature (1,1,1,1,1,1,1).
FORMULA
a(n+7) = a(n) + a(n+1) + a(n+2) + a(n+3) + a(n+4) + a(n+5) + a(n+6).
MATHEMATICA
LinearRecurrence[Table[1, {7}], {0, 0, 0, 0, 0, 1, 0}, 40] (* Michael De Vlieger, Dec 09 2014 *)
PROG
(J) NB. see A251713 for the program and apply it to 0 0 0 0 0 1 0.
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Arie Bos, Dec 07 2014
STATUS
approved