A055080 Triangle T(n,k) read by rows, giving number of k-member minimal covers of an unlabeled n-set, k=1..n.
1, 1, 1, 1, 2, 1, 1, 4, 3, 1, 1, 6, 9, 4, 1, 1, 9, 23, 17, 5, 1, 1, 12, 51, 65, 28, 6, 1, 1, 16, 103, 230, 156, 43, 7, 1, 1, 20, 196, 736, 863, 336, 62, 8, 1, 1, 25, 348, 2197, 4571, 2864, 664, 86, 9, 1, 1, 30, 590, 6093, 22952, 25326, 8609, 1229, 115, 10, 1, 1, 36, 960
Offset: 1
Examples
Triangle begins: 1; 1, 1; 1, 2, 1; 1, 4, 3, 1; 1, 6, 9, 4, 1; 1, 9, 23, 17, 5, 1; 1, 12, 51, 65, 28, 6, 1; 1, 16, 103, 230, 156, 43, 7, 1; 1, 20, 196, 736, 863, 336, 62, 8, 1; ... There are four minimal covers of an unlabeled 3-set: one 1-cover {{1,2,3}}, two 2-covers {{1,2},{3}}, {{1,2},{1,3}} and one 3-cover {{1},{2},{3}}.
Links
- Andrew Howroyd, Table of n, a(n) for n = 1..1275 (first 50 rows)
- R. J. Clarke, Covering a set by subsets, Discrete Math., 81 (1990), 147-152.
- Vladeta Jovovic, Binary matrices up to row and column permutations
- G. F. Royle, Counting Set Covers and Split Graphs, J. Integer Seqs., 3 (2000), #00.2.6.
- Eric Weisstein's World of Mathematics, Minimal covers
Crossrefs
Programs
-
PARI
\\ Needs A(n,m) from A028657. T(n,k) = A(n-k, k) - if(k
Andrew Howroyd, Feb 28 2023
Comments