The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A367457 Number of maximal independent vertex sets in the n X n camel graph. 1
1, 1, 1, 25, 300, 4761, 37908, 1408969, 42742245, 1650878161, 240427884762, 14943334966921, 4986511832627632, 793446864376246336, 451148370226544277049 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
LINKS
Eric Weisstein's World of Mathematics, Camel Graph.
Eric Weisstein's World of Mathematics, Maximal Independent Vertex Set.
MATHEMATICA
Table[Length@FindIndependentVertexSet[RelationGraph[Sort[Abs[Subtract[##]]] == {1, 3} &, Tuples[Range[n], 2]], Infinity, All], {n, 8}]
PROG
(Python)
from networkx import empty_graph, complement, find_cliques
def A367457(n):
G = empty_graph((i, j) for i in range(n) for j in range(n))
G.add_edges_from(((i, j), (i+k, j+l)) for i in range(n) for j in range(n) for (k, l) in ((1, 3), (1, -3), (-1, 3), (-1, -3), (3, 1), (3, -1), (-3, 1), (-3, -1)) if 0<=i+k<n and 0<=j+l<n)
return sum(1 for c in find_cliques(complement(G))) # Chai Wah Wu, Jan 27 2024
CROSSREFS
Sequence in context: A078488 A010941 A022620 * A042206 A269448 A128377
KEYWORD
nonn,more
AUTHOR
Eric W. Weisstein, Jan 26 2024
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 June 8 08:51 EDT 2024. Contains 373207 sequences. (Running on oeis4.)