OFFSET
0,9
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -1, -1).
FORMULA
G.f.: x^6*(1+x^2+x^5+x^6+x^7+x^9+x^10) / ( (1-x-x^2)*(1-x^16) ). - R. J. Mathar, Jul 14 2012
MATHEMATICA
Floor[Fibonacci[Range[0, 40]]/7] (* modified by G. C. Greubel, May 22 2019 *)
LinearRecurrence[{1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -1, -1}, {0, 0, 0, 0, 0, 0, 1, 1, 3, 4, 7, 12, 20, 33, 53, 87, 141, 228}, 50] (* Harvey P. Dale, Dec 01 2020 *)
PROG
(Magma) [Floor(Fibonacci(n)/7): n in [0..40]];
(PARI) vector(40, n, n--; fibonacci(n)\7 ) \\ G. C. Greubel, May 22 2019
(Sage) [floor(fibonacci(n)/7) for n in (0..40)] # G. C. Greubel, May 22 2019
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Jul 10 2012
STATUS
approved