← Back to the home pageSd(n,k) is the number of ways of partitioning the set {1,2,...,n} into k subsets such that in each subset, elements have pairwise distance at least d.
- Sd(1,1)=1
- Sd(1,0)=0 for n≥2
- Sd(n,k)=0 for k≥n
- Sd(n,k)=Sd(n−1,k−1)+(k−d+1)∗Sd(n−1,k) for n≥k≥d
Sd(n,k)={n−d+1k−d+1} for n≥k≥d
Mohr, Porter: Applications of Chromatic Polynomials Involving Stirling Numbers
Comments
Loading comments...