OFFSET
0,2
LINKS
Sean A. Irvine, Table of n, a(n) for n = 0..150
J. L. Hock and R. B. McQuistan, A note on the occupational degeneracy for dimers on a saturated two-dimensional lattice space, Discrete Applied Mathematics, 1984, v.8, 101-104.
Per Hakan Lundow, Computation of matching polynomials and the number of 1-factors in polygraphs, Research report, No 12, 1996, Department of Math., Umea University, Sweden.
Per Hakan Lundow, Enumeration of matchings in polygraphs, 1998.
Index entries for linear recurrences with constant coefficients, signature (209, -11936, 274208, -3112032, 19456019, -70651107, 152325888, -196664896, 152325888, -70651107, 19456019, -3112032, 274208, -11936, 209, -1).
FORMULA
a(n) = 209*a(n-1) - 11936*a(n-2) + 274208*a(n-3) - 3112032*a(n-4) + 19456019*a(n-5) - 70651107*a(n-6) + 152325888*a(n-7) - 196664896*a(n-8) + 152325888*a(n-9) - 70651107*a(n-10) + 19456019*a(n-11) - 3112032*a(n-12) + 274208*a(n-13) - 11936*a(n-14) + 209*a(n-15) - a(n-16). - Jay Anderson (horndude77(AT)gmail.com), Apr 07 2007
G.f.: (1 - 154x + 6777x^2 - 123961x^3 + 1132714x^4 - 5684515x^5 + 16401668x^6 - 27757938x^7 + 27757938*x^8 - 16401668x^9 + 5684515x^10 - 1132714x^11 + 123961x^12 -6777x^13 + 154x^14 - x^15)/(1 - 209x + 11936x^2 - 274208x^3 + 3112032x^4 - 19456019x^5 + 70651107x^6 - 152325888x^7 + 196664896x^8 - 152325888x^9 + 70651107x^10 -19456019x^11 + 3112032x^12 - 274208x^13 + 11936x^14 - 209x^15 + x^16). - Sergey Perepechko, Nov 23 2012
MATHEMATICA
T[_?OddQ, _?OddQ] = 0;
T[m_, n_] := Product[2(2+Cos[2 j Pi/(m+1)]+Cos[2 k Pi/(n+1)]), {k, 1, n/2}, {j, 1, m/2}];
a[n_] := T[2n, 9] // Round;
Table[a[n], {n, 0, 20}] (* Jean-François Alcover, May 28 2022 *)
PROG
(PARI) {a(n) = sqrtint(polresultant(polchebyshev(2*n, 2, x/2), polchebyshev(9, 2, I*x/2)))} \\ Seiichi Manyama, Apr 13 2020
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
Edited by N. J. A. Sloane, Jul 03 2008 at the suggestion of R. J. Mathar
STATUS
approved