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!)
A334004 Number of spanning trees in the graph P_9 x P_n. 3
1, 40545, 750331584, 11905151192865, 179796299139278305, 2662079368040434932480, 39067130344394503972142977, 570929651486775190858844600865, 8326627661691818545121844900397056, 121316352059447360262303173959408358625, 1766658737971934774798769007686932254154689 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
MATHEMATICA
a[n_] := Resultant[ChebyshevU[n - 1, x/2], ChebyshevU[8, (4 - x)/2], x]; Array[a, 11] (* Amiram Eldar, May 04 2021 *)
PROG
(PARI) {a(n) = polresultant(polchebyshev(n-1, 2, x/2), polchebyshev(8, 2, (4-x)/2))}
(Python)
# Using graphillion
from graphillion import GraphSet
import graphillion.tutorial as tl
def A116469(n, k):
if n == 1 or k == 1: return 1
universe = tl.grid(n - 1, k - 1)
GraphSet.set_universe(universe)
spanning_trees = GraphSet.trees(is_spanning=True)
return spanning_trees.len()
def A334004(n):
return A116469(n, 9)
print([A334004(n) for n in range(1, 10)])
CROSSREFS
Row m=9 of A116469.
Sequence in context: A218399 A090060 A250955 * A097238 A249879 A046180
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Apr 12 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 May 14 00:47 EDT 2024. Contains 372528 sequences. (Running on oeis4.)