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.

A322704 Number of regular hypergraphs on n labeled vertices with no singletons.

Original entry on oeis.org

1, 1, 2, 4, 80, 209944
Offset: 0

Views

Author

Gus Wiseman, Dec 23 2018

Keywords

Comments

We define a hypergraph to be any finite set of finite nonempty sets. A hypergraph is regular if all vertices have the same degree.

Examples

			The a(3) = 4 edge-sets:
  {}
  {{1,2,3}}
  {{1,2},{1,3},{2,3}}
  {{1,2},{1,3},{2,3},{1,2,3}}
		

Crossrefs

Programs

  • Mathematica
    Table[Sum[SeriesCoefficient[Product[1+Times@@x/@s,{s,Subsets[Range[n],{2,n}]}],Sequence@@Table[{x[i],0,k},{i,n}]],{k,0,2^n-n-1}],{n,1,5}]