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.

A360685 Number of maximum independent vertex sets in the n-halved cube graph Q_n/2.

Original entry on oeis.org

1, 2, 4, 4, 40, 120, 240, 240, 11612160
Offset: 1

Views

Author

Eric W. Weisstein, Feb 16 2023

Keywords

Crossrefs

Cf. A290606.

Programs

  • Mathematica
    Table[With[{g = GraphPower[HypercubeGraph[n - 1], 2]}, Length[FindIndependentVertexSet[g, Length /@ FindIndependentVertexSet[g], All]]], {n, 8}]
  • Python
    from collections import Counter
    from networkx import empty_graph, find_cliques, complement, power
    def A360685(n):
        k = 1<Chai Wah Wu, Jan 12 2024