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.

A351100 Maximum number of 4-subsets of an n-set such that every 3-subset is covered at most twice.

Original entry on oeis.org

2, 5, 9, 15, 28, 40, 60, 80, 108, 143, 182, 225, 280, 340, 405
Offset: 4

Views

Author

Jeremy Tan, Jan 31 2022

Keywords

Comments

Maximum number of K_4^3's that can be packed in a doubled K_n^3, where K_n^m is the complete m-uniform hypergraph on n vertices.

Examples

			a(6) = 9 because of the following optimal collection of 4-subsets:
  1 2 3 4
  2 3 4 5
  3 4 5 6
  4 5 6 1
  5 6 1 2
  6 1 2 3
  1 2 4 5
  2 3 5 6
  3 4 6 1
		

Crossrefs

Cf. A001839-A001843 for other packing sequences discussed in Richard K. Guy's paper.

Formula

a(n) >= 2*A001843(n). Equality holds if n = 6k+2 or 6k+4 (Hanani).