OFFSET
0,16
COMMENTS
Number of compositions of n into parts 7 and 8. - Joerg Arndt, Jun 28 2013
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (0,0,0,0,0,0,1,1).
FORMULA
a(n) = a(n-7) + a(n-8) for n > 7. - Vincenzo Librandi, Jun 28 2013
a(n) = Sum_{k=0..floor(n/7)} binomial(k,n-7*k). - Seiichi Manyama, Oct 01 2024
MATHEMATICA
CoefficientList[Series[1 / (1 - Total[x^Range[7, 8]]), {x, 0, 70}], x] (* Vincenzo Librandi, Jun 28 2013 *)
LinearRecurrence[{0, 0, 0, 0, 0, 0, 1, 1}, {1, 0, 0, 0, 0, 0, 0, 1}, 80] (* Harvey P. Dale, Mar 19 2019 *)
PROG
(Magma) m:=70; R<x>:=PowerSeriesRing(Integers(), m); Coefficients(R!(1/(1-x^7-x^8))); /* or */ I:=[1, 0, 0, 0, 0, 0, 0, 1]; [n le 8 select I[n] else Self(n-7)+Self(n-8): n in [1..70]]; // Vincenzo Librandi, Jun 28 2013
(PARI) x='x+O('x^66); Vec(1/(1-x^7-x^8)) \\ Altug Alkan, Oct 07 2018
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved