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.

A365910 Minimum number of parts in a partition of all 4-subsets of an n-element set such that the intersection of any two subsets from the same part has size at most 1.

Original entry on oeis.org

1, 5, 15, 18, 35, 42
Offset: 4

Views

Author

Max Alekseyev, Sep 23 2023

Keywords

Comments

a(n) >= binomial(n-2,2).
a(n) >= binomial(n,4) / A004037(n).
For n >= 7, a(n) <= (3*n-11) * (n-4).

Crossrefs

Cf. A004037.

Programs

  • Sage
    def A365910(n): return Graph([Subsets(n,4), lambda u,v: u!=v and len(u&v)>1]).chromatic_number()
Showing 1-1 of 1 results.