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-2 of 2 results.

A053043 Number of facets of hypermetric correlation cone.

Original entry on oeis.org

3, 12, 40, 210, 3773
Offset: 2

Views

Author

N. J. A. Sloane, Feb 25 2000

Keywords

Comments

In Table 1 of Deza & Dutour Sikirić 2018 (also in Table 13.1 on p. 223 of "Generalizations of Finite Metrics and Cuts"), the same initial terms are given for the number of facets of the hypermetric cone HYP_{n-1}, with the next term 298592. However, the hypermetric cone HYP and the hypermetric correlation cone HYCO apparently have different definitions. - Andrey Zabolotskiy, Jun 25 2022

References

  • M. Deza and V. Grishukhin, Voronoi L-decomposition of PSD_n and the hypermetric correlation cone, pp. 75-79 of Voronoi's Impact on Modern Science, ed. P. Engel and H. Syta, 2 vols, Inst. Math., Nat. Acad. Sci. Ukraine, Kiev 1998.
  • Elena Deza, Michel Deza and Mathieu Dutour Sikirić, Generalizations of Finite Metrics and Cuts, World Scientific, 2016.

Crossrefs

Cf. A235459.

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)]
Showing 1-2 of 2 results.