login
A398679
Number of spanning trees of the 3 X n grid graph that are invariant under rotation by 180 degrees.
2
1, 3, 12, 35, 145, 432, 1807, 5405, 22644, 67773, 283999, 850080, 3562337, 10663107, 44684940, 133755235, 560516657, 1677792528, 7030982831, 21045816925, 88194921204, 263993558397, 1106295432383, 3311470367040, 13877098233025, 41538271098243, 174070912494348, 521045872287395
OFFSET
1,2
LINKS
Eric Weisstein's World of Mathematics, Grid Graph.
Eric Weisstein's World of Mathematics, Spanning Tree.
FORMULA
G.f.: x*(1 + x)^2*(1 + x - 6*x^2 + x^3 + x^4)/(1 - 15*x^2 + 32*x^4 - 15*x^6 + x^8).
a(n) = 15*a(n-2) - 32*a(n-4) + 15*a(n-6) - a(n-8).
a(n) = A161495(n/2) for even n.
EXAMPLE
For n = 2, a(2) = 3. The three spanning trees of a 3 X 2 grid graph that are fixed under a 180 degree rotation are:
+ + +---+ +---+
| | | |
+---+ +---+ +---+
| | | |
+ + +---+ +---+
MATHEMATICA
LinearRecurrence[{0, 15, 0, -32, 0, 15, 0, -1}, {1, 3, 12, 35, 145, 432, 1807, 5405}, 30]
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved