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.

A320606 Regular triangle read by rows where T(n,k) is the number of k-uniform hypergraphs spanning n labeled vertices where every two vertices appear together in some edge, n >= 0, 0 <= k <= n.

Original entry on oeis.org

1, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 5, 1, 0, 0, 1, 388, 16, 1, 0, 0, 1, 477965, 27626, 42, 1
Offset: 1

Views

Author

Gus Wiseman, Jan 10 2019

Keywords

Examples

			Triangle begins:
      1
      0      1
      0      0      1
      0      0      1      1
      0      0      1      5      1
      0      0      1    388     16      1
      0      0      1 477965  27626     42      1
		

Crossrefs

Row sums are A321134. Column k = 3 is A302394 without the initial terms.

Programs

  • Mathematica
    Table[Length[Select[Subsets[If[k==0,{},Subsets[Range[n],{k}]]],And[Union@@#==Range[n],Length[Union@@(Subsets[#,{2}]&/@#)]==Binomial[n,2]]&]],{n,0,6},{k,0,n}]