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!)
A339121 Number of cycles in the grid graph P_9 X P_n. 2
36, 4040, 542295, 51139577, 4237530095, 345142437669, 28251882697663, 2318527339461265, 190273063549680295, 15609156135669687673, 1280305089790914190288, 105011610206669201362004, 8613171107463963712000106, 706463610718638922253288622, 57945052730138702492774189915 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,1
LINKS
Eric Weisstein's World of Mathematics, Graph Cycle
Eric Weisstein's World of Mathematics, Grid Graph
PROG
(Python)
# Using graphillion
from graphillion import GraphSet
import graphillion.tutorial as tl
def A(n, k):
universe = tl.grid(n - 1, k - 1)
GraphSet.set_universe(universe)
cycles = GraphSet.cycles()
return cycles.len()
def A339121(n):
return A(n, 9)
print([A339121(n) for n in range(2, 15)])
CROSSREFS
Sequence in context: A295595 A003744 A163034 * A184270 A187405 A102794
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Nov 24 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 July 18 21:02 EDT 2024. Contains 374388 sequences. (Running on oeis4.)