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!)
A085807 Permanent of the symmetric n X n matrix A defined by A[i,j] = |i-j| for 1 <= i,j <= n. 11

%I #26 Sep 14 2021 17:31:45

%S 1,0,1,4,64,1152,34372,1335008,69599744,4577345152,374491314176,

%T 37154032517376,4402467119882240,613680867638476800,

%U 99443966100565999872,18534733913629064343552,3937496200758879526977536,945776134421421651222708224,255043190756805184245158084608

%N Permanent of the symmetric n X n matrix A defined by A[i,j] = |i-j| for 1 <= i,j <= n.

%C Conjecture: For any odd prime p, we have a(p) == -1/2 (mod p). - _Zhi-Wei Sun_, Aug 30 2021

%H Vaclav Kotesovec, <a href="/A085807/b085807.txt">Table of n, a(n) for n = 0..37</a>

%H Zhi-Wei Sun, <a href="https://arxiv.org/abs/2108.07723">Arithmetic properties of some permanents</a>, arXiv:2108.07723 [math.GM], 2021.

%p with(LinearAlgebra):

%p a:= n-> `if`(n=0, 1, Permanent(Matrix(n, (i, j)-> abs(i-j)))):

%p seq(a(n), n=0..18); # _Alois P. Heinz_, Nov 14 2016

%o (PARI) permRWNb(a)= n=matsize(a)[1]; if(n==1,return(a[1,1])); sg=1; in=vectorv(n); x=in; x=a[,n]-sum(j=1,n,a[,j])/2; p=prod(i=1,n,x[i]); for(k=1,2^(n-1)-1,sg=-sg; j=valuation(k,2)+1; z=1-2*in[j]; in[j]+=z; x+=z*a[,j]; p+=prod(i=1,n,x[i],sg)); return(2*(2*(n%2)-1)*p)

%o for(n=1,22,a=matrix(n,n,i,j,abs(i-j));print1(permRWNb(a)",")) \\ Herman Jamke (hermanjamke(AT)fastmail.fm), May 14 2007

%o (PARI) {a(n) = matpermanent(matrix(n, n, i, j, abs(i-j)))}

%o for(n=0, 20, print1(a(n), ", ")) \\ _Vaclav Kotesovec_, Aug 12 2021

%o (Python)

%o from sympy import Matrix

%o def A085807(n): return Matrix(n,n,[abs(j-k) for j in range(n) for k in range(n)]).per() # _Chai Wah Wu_, Sep 14 2021

%Y Cf. A085750, A204249, A278845, A278847.

%K nonn

%O 0,4

%A Yuval Dekel (dekelyuval(AT)hotmail.com), Jul 24 2003

%E More terms from _Vladeta Jovovic_, Jul 26 2003

%E a(0)=1 prepended by _Alois P. Heinz_, Nov 14 2016

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 April 23 22:36 EDT 2024. Contains 371917 sequences. (Running on oeis4.)