A244168 Number of compositions of n in which the minimal multiplicity of parts equals 5.
1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 253, 462, 1254, 1287, 2794, 3256, 6117, 6980, 12319, 13630, 22015, 25971, 38144, 43966, 64863, 828898, 2119622, 7035420, 18918950, 48777982, 117594112, 259516217, 574862404, 1204750520, 2487540831, 5003559312, 9935325156
Offset: 5
Keywords
Links
- Alois P. Heinz, Table of n, a(n) for n = 5..400
Crossrefs
Column k=5 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, 5) -b(n$2, 0, 6): seq(a(n), n=5..50);