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.

A290606 Number of maximal independent vertex sets (and minimal vertex covers) in the n-halved cube graph.

Original entry on oeis.org

1, 2, 4, 4, 40, 136, 8080, 17331120
Offset: 1

Views

Author

Eric W. Weisstein, Aug 07 2017

Keywords

Crossrefs

Cf. A288943.

Programs

  • Mathematica
    Table[Length@FindIndependentVertexSet[GraphPower[HypercubeGraph[n - 1], 2], Infinity, All], {n, 7}]
  • Python
    from networkx import empty_graph, find_cliques, complement, power
    def A290606(n):
        k = 1<Chai Wah Wu, Jan 11 2024