OFFSET
0,5
MATHEMATICA
f[i_, j_] :=
Floor[(i + j + 3)/4] - Floor[(i + j + 1)/4];
m[n_] := Table[f[i, j], {i, 1, n}, {j, 1, n}]
TableForm[m[8]] (* 8x8 principal submatrix *)
Flatten[Table[f[i, n + 1 - i],
{n, 1, 14}, {i, 1, n}]] (* A204545 *)
Permanent[m_] :=
With[{a = Array[x, Length[m]]},
Coefficient[Times @@ (m.a), Times @@ a]];
Table[Permanent[m[n]], {n, 1, 22}] (* A204546 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Clark Kimberling, Jan 16 2012
EXTENSIONS
Title corrected by Rintaro Matsuo, Apr 15 2025
a(0), a(23) from Alois P. Heinz, Apr 15 2025
a(24)-a(26) from Pontus von Brömssen, Jun 22 2025
STATUS
approved
