login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A346934 Permanent of the 2n X 2n matrix with the (i,j)-entry i-j (i,j=1..2n). 5
-1, 52, -18660, 24446016, -85000104000, 647188836814080, -9486416237249952000, 244072502056661870592000, -10282514440038927957603532800, 671904022157076034864609763328000, -65203712913305114275839483698454528000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
The author has proved that a((p-1)/2) == 2 (mod p) for any odd prime p.
Conjecture 1: (-1)^n*a(n) > 0 for all n > 0. Also, a(n) == 0 (mod 2n+1) if 2n+1 is composite.
For any permutation f of {1,...,2n+1}, clearly Product_{j=1..2n+1} (j-f(j)) = -Product_{k=1..2n+1} (k-f^{-1}(k)). Thus the permanent of the matrix [i-j]_{1<=i,j<=2n+1} vanishes.
It is easy to see that per[i+j]_{1<=i,j<n} = per[i+(n-j)]_{1<=i,j<n} == per[i-j]_{1<=i,j<n} (mod n). Thus A204249(2n) == a(n) (mod 2n+1).
Let D(2n) be the set of all derangements of {1,...,2n}. Clearly, a(n) is the sum of those Product_{j=1..2n}(j-f(j)) with f in the set D(2n).
Conjecture 2: For any odd prime p, the sum of those 1/Product_{j=1..p-1}(j-f(j)) with f in the set D(p-1) is congruent to (-1)^((p-1)/2) modulo p.
LINKS
Zhi-Wei Sun, Arithmetic properties of some permanents, arXiv:2108.07723 [math.GM], 2021.
EXAMPLE
a(1) is the permanent of the matrix [1-1,1-2;2-1,2-2] = [0,-1;1,0], which equals -1.
MATHEMATICA
a[n_]:=a[n]=Permanent[Table[i-j, {i, 1, 2n}, {j, 1, 2n}]];
Table[a[n], {n, 1, 11}]
PROG
(PARI) a(n) = matpermanent(matrix(2*n, 2*n, i, j, i-j)); \\ Michel Marcus, Aug 08 2021
CROSSREFS
Sequence in context: A209524 A208100 A232521 * A200806 A208305 A098148
KEYWORD
sign
AUTHOR
Zhi-Wei Sun, Aug 08 2021
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified July 22 22:03 EDT 2024. Contains 374544 sequences. (Running on oeis4.)