OFFSET
1,2
COMMENTS
Also number of quarter-turn symmetric domino tilings of a holey Aztec quasi-square.
LINKS
Paul Barry, A Riordan array family for some integrable lattice models, arXiv:2409.09547 [math.CO], 2024. See p. 8.
P. Di Francesco and E. Guitter, Twenty-Vertex model with domain wall boundaries and domino tilings, Electr. J. Combin. 27-2 (2020), P2.13.
FORMULA
a(n) = det A(n), where A(n) is n X n matrix (a[i,j]), 1 <= i,j <= n, with a[i,j] = [x^(i-1)*y^(j-1)] 1/(1-x*y)+2*x/((1-x)*(1-x-y-x*y)).
MAPLE
g:= 1/(1-x*y)+2*x/((1-x)*(1-x-y-x*y)):
S:= map(series, series(g, x, 21), y, 21):
A:= Matrix(20, 20, (i, j) -> coeff(coeff(S, x, i), y, j)):
1, seq(LinearAlgebra:-Determinant(A[1..n, 1..n]), n=1..20); # Robert Israel, Dec 18 2022
MATHEMATICA
a[n_]:=Det[Table[KroneckerDelta[i, j] + Coefficient[Normal[Series[(2 x)/((1 - x) (1 - x - y - x y)) x y, {x, 0, n}, {y, 0, n}]], x^(i) y^(j)], {i, 1, n}, {j, 1, n}]]; Array[a, 15]
CROSSREFS
KEYWORD
nonn
AUTHOR
Philippe Di Francesco, Dec 17 2022
STATUS
approved