login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A301460 Number of maximal independent vertex sets in the n-folded cube graph. 2
2, 4, 2, 56, 654, 915052 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,1
LINKS
Eric Weisstein's World of Mathematics, Folded Cube Graph
Eric Weisstein's World of Mathematics, Maximal Independent Vertex Set
PROG
(Python)
from itertools import product
from networkx import hypercube_graph, contracted_nodes, find_cliques, complement
def A301460(n):
G = hypercube_graph(n)
for a in product((0, 1), repeat=n-1):
G = contracted_nodes(G, (0, )+a, (1, )+tuple(1-d for d in a))
return sum(1 for c in find_cliques(complement(G))) # Chai Wah Wu, Jan 16 2024
CROSSREFS
Sequence in context: A361077 A263931 A259685 * A130172 A303320 A029589
KEYWORD
nonn,more
AUTHOR
Eric W. Weisstein, Mar 21 2018
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 06:04 EDT 2024. Contains 371906 sequences. (Running on oeis4.)