login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A244167
Number of compositions of n in which the minimal multiplicity of parts equals 4.
2
1, 0, 0, 0, 1, 0, 0, 0, 71, 126, 336, 330, 776, 841, 1541, 1821, 2951, 3221, 5322, 5697, 43288, 99626, 313917, 807218, 2049995, 4769054, 10240287, 22002219, 45015647, 90239153, 177239582, 342276724, 650127448, 1223160912, 2275920969, 4197371497, 7754873919
OFFSET
4,9
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, 4) -b(n$2, 0, 5):
seq(a(n), n=4..50);
CROSSREFS
Column k=4 of A242451.
Sequence in context: A141879 A323049 A026063 * A115395 A142647 A152951
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Jun 21 2014
STATUS
approved