OFFSET
0,3
COMMENTS
Equivalently, number of sequences of coins (each of which has value 5, 10, 25, 50 or 100) which add to 5n.
Based on "silver" US coins as of Feb 22 2006.
Number of compositions of n into parts 1, 2, 5, 10, and 20. - Joerg Arndt, Sep 19 2014
FORMULA
G.f.: 1/(1-(x+x^2+x^5+x^10+x^20)).
MAPLE
A114140 := proc(n)
coeftayl( 1/(1-(x+x^2+x^5+x^10+x^20)), x=0, n);
end proc:
seq(A114140(n), n=0..30); # Wesley Ivan Hurt, Sep 18 2014
MATHEMATICA
CoefficientList[Series[1/(1 - (x + x^2 + x^5 + x^10 + x^20)), {x, 0, 30}], x] (* Wesley Ivan Hurt, Sep 18 2014 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
David S. Johnson and N. J. A. Sloane, Feb 22 2006
STATUS
approved