login
A244173
Number of compositions of n in which the minimal multiplicity of parts equals 10.
2
1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 184757, 352716, 999362, 1144066, 2607902, 3268760, 6455801, 8436285, 15084366, 20030010, 33498532, 44704881, 70470621, 94057822, 141525681, 186848156, 273268347, 356766421, 505886876, 656919472
OFFSET
10,21
LINKS
MAPLE
b:= proc(n, i, p, k) option remember; `if`(n=0, p!, `if`(i<1, 0,
add(b(n-i*j, i-1, p+j, k)/j!, j=[0, $max(1, k)..n/i])))
end:
a:= n-> b(n$2, 0, 10) -b(n$2, 0, 11):
seq(a(n), n=10..60);
CROSSREFS
Column k=10 of A242451.
Sequence in context: A024762 A245863 A140933 * A245795 A251449 A131908
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Jun 21 2014
STATUS
approved