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.

A284707 Number of maximal independent vertex sets in the n-hypercube graph Q_n.

Original entry on oeis.org

1, 2, 2, 6, 42, 1670, 1281402
Offset: 0

Views

Author

Eric W. Weisstein, Apr 01 2017

Keywords

Crossrefs

Cf. A027624 (not necessarily maximal), A366425 (non-isomorphic).

Programs

  • Mathematica
    Table[Length @ FindIndependentVertexSet[HypercubeGraph[n], Infinity, All], {n, 0, 6}] (* Eric W. Weisstein, Jan 01 2024 *)
  • Python
    from networkx import empty_graph, find_cliques
    def A284707(n):
        k = 1<Chai Wah Wu, Jan 11 2024

Formula

a(n) ~ 2*n*2^(N/4) where N = 2^n [Kahn and Park]. - N. J. A. Sloane, Sep 11 2019