A346934 Permanent of the 2n X 2n matrix with the (i,j)-entry i-j (i,j=1..2n).
-1, 52, -18660, 24446016, -85000104000, 647188836814080, -9486416237249952000, 244072502056661870592000, -10282514440038927957603532800, 671904022157076034864609763328000, -65203712913305114275839483698454528000
Offset: 1
Keywords
Examples
a(1) is the permanent of the matrix [1-1,1-2;2-1,2-2] = [0,-1;1,0], which equals -1.
Links
- Vaclav Kotesovec, Table of n, a(n) for n = 1..19
- Zhi-Wei Sun, Arithmetic properties of some permanents, arXiv:2108.07723 [math.GM], 2021.
Programs
-
Mathematica
a[n_]:=a[n]=Permanent[Table[i-j,{i,1,2n},{j,1,2n}]]; Table[a[n],{n,1,11}]
-
PARI
a(n) = matpermanent(matrix(2*n, 2*n, i, j, i-j)); \\ Michel Marcus, Aug 08 2021
Comments