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!)
A204809 Number of skew-symmetric n X n matrices A = (a_ij) with entries from {-1,0,+1} such that a_wx a_yz + a_wy a_xz + a_wz a_xy = a_wx a_wy a_wz a_xy a_xz a_yz for all distinct w,x,y,z in {1..n}. 1

%I #30 Jan 09 2019 01:57:27

%S 1,3,27,125,461,1583,5335,17881,59641,197691,650739,2127381,6910853

%N Number of skew-symmetric n X n matrices A = (a_ij) with entries from {-1,0,+1} such that a_wx a_yz + a_wy a_xz + a_wz a_xy = a_wx a_wy a_wz a_xy a_xz a_yz for all distinct w,x,y,z in {1..n}.

%C The condition in Wesp's paper is subtly different from the condition here. He requires

%C a_wx a_yz + a_wy a_zx + a_wz a_xy = a_wx a_wy a_wz a_xy a_xz a_yz, which has a different second term, and produces A204821.

%H Gerhard Wesp, <a href="http://dx.doi.org/10.1016/S0012-365X(02)00402-8">A note on the spectra of certain skew-symmetric {1,0,-1}-matrices</a>, Discrete Math. 258 (2002), no. 1-3, 339-346. doi:10.1016/S0012-365X(02)00402-8.

%e a(1)=1 (the zero matrix), and a(2) = 3, a(3) = 27 (up to this point we get all skew-symmetric matrices).

%p # Maple code for the case n=4, included to clarify the definition.

%p # It gives 125 as the answer. - _N. J. A. Sloane_, Jan 19 2012

%p with(combinat); A:=Matrix(4,4): for i from 1 to 4 do A[i,i]:=0; od:

%p n:=0;

%p for a from -1 to 1 do A[1,2]:=a; A[2,1]:=-a;

%p for b from -1 to 1 do A[1,3]:=b; A[3,1]:=-b;

%p for c from -1 to 1 do A[1,4]:=c; A[4,1]:=-c;

%p for d from -1 to 1 do A[2,3]:=d; A[3,2]:=-d;

%p for e from -1 to 1 do A[2,4]:=e; A[4,2]:=-e;

%p for f from -1 to 1 do A[3,4]:=f; A[4,3]:=-f;

%p perms:=permute(4); nsw:=+1;

%p for i from 1 to 24 do

%p p:=perms[i];

%p w:=p[1]; x:=p[2]; y:=p[3]; z:=p[4];

%p star:=A[w,x]*A[y,z]+A[w,y]*A[x,z]+A[w,z]*A[x,y]-A[w,x]*A[w,y]*A[w,z]*A[x,y]*A[x,z]*A[y,z];

%p if star <> 0 then nsw:=-1; break; fi;

%p od:

%p if nsw = 1 then n:=n+1; fi;

%p od: od: od: od: od: od:

%p n;

%Y Cf. A204821.

%K nonn,more

%O 1,2

%A _N. J. A. Sloane_, Jan 19 2012

%E a(4)-a(6) computed by _Max Alekseyev_, Jan 18 2012

%E a(7)-a(13) computed by _R. H. Hardin_, Jan 20 2012

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 24 10:11 EDT 2024. Contains 371935 sequences. (Running on oeis4.)