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.

A246427 Number of facets of the cone defined by the zero-one inclusion matrix of pairs versus triples on an n-set.

Original entry on oeis.org

10, 70, 896, 52367
Offset: 5

Views

Author

Peter J. Dukes, Aug 26 2014

Keywords

Comments

Equivalently, this is the number of integer weightings of the edges of the complete graph K_n which are: (1) nonnegative on all triangles; (2) maximally vanishing on triangles; and (3) have gcd of weights equal to one.
This also gives the degree of each anticut in the metric polytope (see link below) for n points.

Examples

			For n = 5, the 10 facet normals are defined by the choice of a (2,3)-partition.  Weight 2 is assigned to edges within each part and weight -1 is assigned to edges crossing the partition.  Every triangle has weight 0, except for one which inherits weight 6.
		

Crossrefs

Programs

  • Sage
    def A246427(n):
        T = Combinations(range(n),2)
        K = Combinations(range(n),3)
        W = matrix(ZZ,binomial(n,2),binomial(n,3),lambda i,j:Set(T[i]).issubset(Set(K[j])))
        C = Cone(W.transpose())
        return len(C.facet_normals())
    [A246427(n) for n in range(5,8)]