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.

Showing 1-1 of 1 results.

A321134 Number of uniform hypergraphs spanning n vertices where every two vertices appear together in some edge.

Original entry on oeis.org

1, 1, 1, 2, 7, 406, 505635
Offset: 0

Views

Author

Gus Wiseman, Jan 10 2019

Keywords

Comments

A hypergraph is uniform if all edges have the same size.

Examples

			The a(4) = 7 hypergraphs:
  {{1,2,3,4}}
  {{1,2,3},{1,2,4},{1,3,4}}
  {{1,2,3},{1,2,4},{2,3,4}}
  {{1,2,3},{1,3,4},{2,3,4}}
  {{1,2,4},{1,3,4},{2,3,4}}
  {{1,2,3},{1,2,4},{1,3,4},{2,3,4}}
  {{1,2},{1,3},{1,4},{2,3},{2,4},{3,4}}
		

Crossrefs

Programs

  • Mathematica
    Table[Sum[Length[Select[Subsets[Subsets[Range[n],{k}]],And[Union@@#==Range[n],Length[Union@@(Subsets[#,{2}]&/@#)]==Binomial[n,2]]&]],{k,1,n}],{n,1,6}]
Showing 1-1 of 1 results.