A244173 Number of compositions of n in which the minimal multiplicity of parts equals 10.
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
Keywords
Links
- Alois P. Heinz, Table of n, a(n) for n = 10..400
Crossrefs
Column k=10 of A242451.
Programs
-
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);