OFFSET
1,1
COMMENTS
The 1-dimensional case is A027375.
An n X k matrix is aperiodic if all n * k rotations of its sequence of rows and its sequence of columns are distinct.
LINKS
Andrew Howroyd, Table of n, a(n) for n = 1..1275
FORMULA
T(n,k) = n*k*A323861(n,k). - Andrew Howroyd, Aug 21 2019
EXAMPLE
Table begins:
1 2 3 4
------------------------
1: | 2 2 6 12
2: | 2 8 54 216
3: | 6 54 486 4020
4: | 12 216 4020 64800
The A(2,2) = 8 arrays:
[0 0] [0 0] [0 1] [0 1] [1 0] [1 0] [1 1] [1 1]
[0 1] [1 0] [0 0] [1 1] [0 0] [1 1] [0 1] [1 0]
Note that the following are not aperiodic even though their row and column sequences are independently aperiodic:
[1 0] [0 1]
[0 1] [1 0]
MATHEMATICA
apermatQ[m_]:=UnsameQ@@Join@@Table[RotateLeft[m, {i, j}], {i, Length[m]}, {j, Length[First[m]]}];
Table[Length[Select[Partition[#, n-k]&/@Tuples[{0, 1}, (n-k)*k], apermatQ]], {n, 8}, {k, n-1}]
PROG
(GAP) # See A323861 for code.
for n in [1..8] do for k in [1..8] do Print(n*k*A323861(n, k), ", "); od; Print("\n"); od; # Andrew Howroyd, Aug 21 2019
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Gus Wiseman, Feb 04 2019
EXTENSIONS
Terms a(29) and beyond from Andrew Howroyd, Aug 21 2019
STATUS
approved