login
A397309
Number of perfect matchings of the 5 X 2n grid graph embedded on the Klein bottle.
0
38, 558, 9158, 151838, 2520008, 41828238, 694291958, 11524317758, 191288283638, 3175130080008, 52702919636438, 874798092883358, 14520480242926358, 241020583150395438, 4000619850742680008, 66404947581467424638, 1102233460767045774758, 18295603660314665834958
OFFSET
1,1
COMMENTS
The characteristic polynomial x^4 - 19*x^3 + 41*x^2 - 19*x + 1 is palindromic. Using y = x + 1/x, it reduces to y^2 - 19*y + 39, with roots (19 +- sqrt(205))/2. The dominant root is approximately 16.599.
Part of a family: for m = 2, 3, 4, 5, 6, 7 the characteristic polynomials are all palindromic. See A398567 (m=3) and A398672 (m=4).
FORMULA
a(n) = 19*a(n-1) - 41*a(n-2) + 19*a(n-3) - a(n-4) for n >= 5, with a(1) = 38, a(2) = 558, a(3) = 9158, a(4) = 151838.
G.f.: 2*x*(19 - 82*x + 57*x^2 - 4*x^3)/(1 - 19*x + 41*x^2 - 19*x^3 + x^4).
EXAMPLE
For n=1, the 5 X 2 grid on the Klein bottle has a(1) = 38 perfect matchings (multigraph convention).
MATHEMATICA
LinearRecurrence[{19, -41, 19, -1}, {38, 558, 9158, 151838}, 18] (* Stefano Spezia, Aug 20 2026 *)
PROG
(Python) # See links section for program.
CROSSREFS
Cf. A398567 (Klein bottle m=3), A398672 (Klein bottle m=4).
Sequence in context: A006418 A160317 A088891 * A159784 A243820 A268765
KEYWORD
nonn,easy,new
AUTHOR
Jean Lauro Muller, Aug 19 2026
STATUS
approved