OFFSET
0,3
COMMENTS
The game of darts has unmodified scores (1, 2, ..., 20), doubles of those values (2, 4, ..., 40), triples of those values (3, 6, ..., 60), and bull's eye values of 25 and 50.
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..1000
FORMULA
G.f. = 1/(1-(x*(1-x^20)/(1-x)+x^2*(1-x^40)/(1-x^2)+x^3*(1-x^60)/(1-x^3)+x^25+x^50)).
EXAMPLE
There are 7 ordered ways to get a total score of 3: (#1) "1","1","1"; (#2) "2","1"; (#3) "1","2"; (#4) "double 1","1" (#5) "1","double 1"; (#6) "triple 1"; and (#7) "3".
MATHEMATICA
CoefficientList[Series[1/(1-(x (1-x^20)/(1-x)+x^2(1-x^40)/(1-x^2)+ x^3(1- x^60)/ (1-x^3)+x^25+x^50)), {x, 0, 30}], x] (* Harvey P. Dale, Jul 04 2011 *)
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Lee A. Newberg, Oct 30 2009
STATUS
approved