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!)
A290610 Number of maximal independent vertex sets (and minimal vertex covers) in the n-odd graph. 1
1, 3, 15, 6127 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
Eric Weisstein's World of Mathematics, Maximal Independent Vertex Set.
Eric Weisstein's World of Mathematics, Minimal Vertex Cover.
Eric Weisstein's World of Mathematics, Odd Graph.
PROG
(Python)
from itertools import combinations
from networkx import empty_graph, find_cliques
def A290610(n):
G = empty_graph(combinations(range((n<<1)-1), n-1))
G.add_edges_from((a, b) for a, b in combinations(G, 2) if not set(a).isdisjoint(b))
return sum(1 for c in find_cliques(G)) # Chai Wah Wu, Jan 11 2024
CROSSREFS
Sequence in context: A202621 A076046 A202380 * A134807 A364799 A004002
KEYWORD
nonn,more
AUTHOR
Eric W. Weisstein, Aug 07 2017
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 19 09:23 EDT 2024. Contains 371782 sequences. (Running on oeis4.)