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.

A320446 Covers of triangles by tetrahedra: number of labeled 4-uniform hypergraphs spanning n vertices such that every three vertices appear together in some edge.

Original entry on oeis.org

1, 1, 1, 0, 1, 6, 5789
Offset: 0

Views

Author

Gus Wiseman, Jan 10 2019

Keywords

Examples

			The a(5) = 6 hypergraphs:
  {{1234},{1235},{1245},{1345}}
  {{1234},{1235},{1245},{2345}}
  {{1234},{1235},{1345},{2345}}
  {{1234},{1245},{1345},{2345}}
  {{1235},{1245},{1345},{2345}}
  {{1234},{1235},{1245},{1345},{2345}}
		

Crossrefs

Programs

  • Mathematica
    Table[Length[Select[Subsets[Subsets[Range[n],{4}]],Length[Union@@(Subsets[#,{3}]&/@#)]==Binomial[n,3]&]],{n,6}]