OFFSET
0,5
COMMENTS
Number of partitions of n into parts 1, 4, 5 and 8. - Ilya Gutkovskiy, May 17 2017
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (1,0,0,1,0,-1,0,1,-2,1,0,-1,0,1,0, 0,1,-1).
FORMULA
a(n) = a(n-1)+a(n-4)-a(n-6)+a(n-8)-2*a(n-9)+a(n-10)-a(n-12)+a(n-14)+a(n-17)-a(n-18). - Wesley Ivan Hurt, May 17 2021
MATHEMATICA
CoefficientList[Series[1/((1 - x)*(1 - x^4)*(1 - x^5)*(1 - x^8)), {x, 0, 50}], x] (* G. C. Greubel, May 17 2017 *)
PROG
(PARI) x='x+O(x^50); Vec(1/((1 - x)*(1 - x^4)*(1 - x^5)*(1 - x^8))) \\ G. C. Greubel, May 17 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved