A322883 Number of set partitions of [n] such that the maximal absolute difference between the least elements of consecutive blocks equals ten.
0, 1, 515, 22253, 430909, 6094476, 74507486, 847129333, 9296465127, 100540964675, 1085004090887, 11775039127122, 129155075413877, 1436488582202316, 16235344928131625, 186710546094489052, 2186538096666720967, 26085011069325363939, 317049671003606985326
Offset: 10
Keywords
Links
- Alois P. Heinz, Table of n, a(n) for n = 10..579
- Wikipedia, Partition of a set
Programs
-
Maple
b:= proc(n, k, m, l) option remember; `if`(n<1, 1, `if`(l-n>k, 0, b(n-1, k, m+1, n))+m*b(n-1, k, m, l)) end: A:= (n, k)-> b(n-1, min(k, n-1), 1, n): a:= n-> (k-> A(n, k)-A(n, k-1))(10): seq(a(n), n=10..30);