OFFSET
0,12
COMMENTS
Number of compositions (ordered partitions) of n into parts 5, 6 and 7. - Ilya Gutkovskiy, May 25 2017
LINKS
Muniru A Asiru, Table of n, a(n) for n = 0..700
Index entries for linear recurrences with constant coefficients, signature (0,0,0,0,1,1,1).
FORMULA
a(n) = a(n-5) + a(n-6) + a(n-7). - Vincenzo Librandi, Mar 23 2011
a(n) = Sum_{k=0..floor(n/4)} Sum_{j=0..k} binomial(j,n-5*k-j)*binomial(k,j). - Vladimir Kruchinin, Nov 16 2011
MAPLE
seq(coeff(series(1/(1-x^5-x^6-x^7), x, n+1), x, n), n=0..60); # Muniru A Asiru, Jul 04 2018
MATHEMATICA
CoefficientList[Series[1/(1 - x^5 - x^6 - x^7), {x, 0, 60}], x] (* or *) LinearRecurrence[{0, 0, 0, 0, 1, 1, 1}, {1, 0, 0, 0, 0, 1, 1}, 60] (* Harvey P. Dale, Jun 28 2011 *)
PROG
(Maxima) a(n):=sum(sum(binomial(j, n-5*k-j)*binomial(k, j), j, 0, k), k, 0, n/4); /* Vladimir Kruchinin, Nov 16 2011 */
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved