OFFSET
3,2
COMMENTS
The 3rd row of A063260. - Michel Marcus, Mar 04 2013
EXAMPLE
Using three normal (six-sided) dice we can produce a sum of 3 in just one way: 1,1,1. We can produce a sum of 4 in three ways: 1,1,2; 1,2,1; 2,1,1. We can produce a sum of 5 in 6 ways and so on.
MATHEMATICA
Transpose[Tally[Total/@Tuples[Range[6], {3}]]][[2]] (* Harvey P. Dale, Dec 17 2014 *)
PROG
(PARI) Vec(((sum(k=1, 6, x^k))^3+O(x^66))) /* Joerg Arndt, Mar 04 2013 */
CROSSREFS
KEYWORD
nonn,fini,full
AUTHOR
Joe Slater (joe(AT)yoyo.cc.monash.edu.au), Aug 05 2000
EXTENSIONS
Corrected by Rick L. Shepherd, May 24 2002
STATUS
approved