OFFSET
4,2
COMMENTS
LINKS
ArtOfProblemSolving et al., What is the best way to partition the 4-subsets of {1,2,3,...,n}?, MathOverflow, 2020.
ArtOfProblemSolving et al., What is the best way to partition the 4-subsets of {1,2,3,...,n}?, Mathematics StackExchange, 2020.
PROG
(Sage) def A365910(n): return Graph([Subsets(n, 4), lambda u, v: u!=v and len(u&v)>1]).chromatic_number()
CROSSREFS
KEYWORD
nonn,hard,more
AUTHOR
Max Alekseyev, Sep 23 2023
STATUS
approved