cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A326866 Number of connectedness systems on n vertices.

Original entry on oeis.org

1, 2, 8, 96, 6720, 8130432, 1196099819520
Offset: 0

Views

Author

Gus Wiseman, Jul 29 2019

Keywords

Comments

We define a connectedness system (investigated by Vim van Dam in 2002) to be a set of finite nonempty sets (edges) that is closed under taking the union of two overlapping edges.

Examples

			The a(0) = 1 through a(2) = 8 connectedness systems:
  {}  {}     {}
      {{1}}  {{1}}
             {{2}}
             {{1,2}}
             {{1},{2}}
             {{1},{1,2}}
             {{2},{1,2}}
             {{1},{2},{1,2}}
		

Crossrefs

The case without singletons is A072446.
The unlabeled case is A326867.
The connected case is A326868.
Binomial transform of A326870 (the covering case).
The BII-numbers of these set-systems are A326872.

Programs

  • Mathematica
    Table[Length[Select[Subsets[Subsets[Range[n],{1,n}]],SubsetQ[#,Union@@@Select[Tuples[#,2],Intersection@@#!={}&]]&]],{n,0,3}]

Formula

a(n) = 2^n * A072446(n).

Extensions

a(6) corrected by Christian Sievers, Oct 26 2023