login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A290611
Number of maximal independent vertex sets (and minimal vertex covers) in the n-tetrahedral graph.
1
40, 450, 16200, 834960, 80011920, 15710016420
OFFSET
6,1
LINKS
Eric Weisstein's World of Mathematics, Tetrahedral Graph
Eric Weisstein's World of Mathematics, Maximal Independent Vertex Set
Eric Weisstein's World of Mathematics, Minimal Vertex Cover
PROG
(Python)
from itertools import combinations
from networkx import empty_graph, find_cliques
def A290611(n):
G = empty_graph(combinations(range(n), 3))
G.add_edges_from((a, b) for a, b in combinations(G, 2) if len(set(a)&set(b)) != 2)
return sum(1 for c in find_cliques(G)) # Chai Wah Wu, Jan 16 2024
CROSSREFS
Sequence in context: A210355 A210348 A055750 * A115189 A186933 A271650
KEYWORD
nonn,more
AUTHOR
Eric W. Weisstein, Aug 07 2017
EXTENSIONS
a(10) from Eric W. Weisstein, Nov 02 2018
a(11) from Chai Wah Wu, Jan 17 2024
STATUS
approved