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!)
A321248 Number of maximal independent vertex sets in the n X n stacked book graph. 1
2, 4, 22, 126, 2260, 37638, 1480106, 106342556, 9320003978, 2071042581066, 633815351419648, 361949253722666782, 381075059450207446426, 651096057826702043966544, 2118270096010218021292121870 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
Eric Weisstein's World of Mathematics, Maximal Independent Vertex Set
Eric Weisstein's World of Mathematics, Stacked Book Graph
PROG
(Python)
from networkx import find_cliques, complement, cartesian_product, star_graph, path_graph
def A321248(n): return sum(1 for c in find_cliques(complement(cartesian_product(star_graph(n), path_graph(n))))) # Chai Wah Wu, Jan 11 2024
CROSSREFS
Sequence in context: A289191 A235938 A279705 * A309741 A110130 A259116
KEYWORD
nonn,more
AUTHOR
Eric W. Weisstein, Nov 01 2018
EXTENSIONS
a(9)-a(15) from Andrew Howroyd, Feb 17 2020
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 25 06:49 EDT 2024. Contains 371964 sequences. (Running on oeis4.)