login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A055080 Triangle T(n,k) read by rows, giving number of k-member minimal covers of an unlabeled n-set, k=1..n. 15
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 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,5
COMMENTS
Also number of unlabeled split graphs on n vertices and with a k-element clique (cf. A048194).
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.
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
FORMULA
T(n,k) = A028657(n,k) - A028657(n-1,k). - Andrew Howroyd, Feb 28 2023
EXAMPLE
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}}.
PROG
(PARI) \\ Needs A(n, m) from A028657.
T(n, k) = A(n-k, k) - if(k<n, A(n-1-k, k))
{ for(n=1, 10, for(k=1, n, print1(T(n, k), ", ")); print) } \\ Andrew Howroyd, Feb 28 2023
CROSSREFS
Row sums give A048194.
Cf. A035348 for labeled case.
Sequence in context: A034781 A110470 A347699 * A034367 A058717 A034371
KEYWORD
nonn,tabl
AUTHOR
Vladeta Jovovic, Jun 13 2000
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 08:19 EDT 2024. Contains 371905 sequences. (Running on oeis4.)