login
Symmetric matrix given by f(i,j)=1+[(i+j) mod 4].
2

%I #6 Mar 30 2012 18:58:08

%S 3,4,4,1,1,1,2,2,2,2,3,3,3,3,3,4,4,4,4,4,4,1,1,1,1,1,1,1,2,2,2,2,2,2,

%T 2,2,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,4,1,1,1,1,1,1,1,1,1,1,1,2,2,

%U 2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4

%N Symmetric matrix given by f(i,j)=1+[(i+j) mod 4].

%e Northwest corner:

%e 3 4 1 2 3 4 1 2

%e 4 1 2 3 4 1 2 3

%e 1 2 3 4 1 2 3 4

%e 2 3 4 1 2 3 4 1

%e 3 4 1 2 3 4 1 2

%e 4 1 2 3 4 1 2 3

%t f[i_, j_] := 1 + Mod[i + j, 4];

%t m[n_] := Table[f[i, j], {i, 1, n}, {j, 1, n}]

%t TableForm[m[8]] (* 8x8 principal submatrix *)

%t Flatten[Table[f[i, n + 1 - i],

%t {n, 1, 12}, {i, 1, n}]] (* A204255 *)

%t Permanent[m_] :=

%t With[{a = Array[x, Length[m]]},

%t Coefficient[Times @@ (m.a), Times @@ a]];

%t Table[Permanent[m[n]], {n, 1, 20}] (* A204256 *)

%Y Cf. A204256.

%K nonn,tabl

%O 1,1

%A _Clark Kimberling_, Jan 14 2012