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
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