A180286 Number of arrangements of n indistinguishable balls in n boxes with the maximum number of balls in any box equal to 6.
6, 42, 224, 1080, 4950, 22022, 96030, 412698, 1754116, 7391475, 30931296, 128709040, 533063220, 2199009840, 9040786150, 37061007270, 151538768920, 618244490589, 2517320600894, 10231810963750, 41522339189370, 168265272591000, 681003190888020, 2752938854265495
Offset: 6
Keywords
Links
- Alois P. Heinz, Table of n, a(n) for n = 6..1675 (terms n=6..59 from R. H. Hardin)
Crossrefs
Column 6 of A180281.
Programs
-
Maple
b:= proc(n, i, k) option remember; `if`(n=0, 1, `if`(i=0, 0, add(b(n-j, i-1, k), j=0..min(n, k)))) end: a:= n-> (k-> b(n$2, k)-b(n$2, k-1))(6): seq(a(n), n=6..30); # Alois P. Heinz, Aug 17 2018