login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


A323864
Number of aperiodic binary arrays of size n.
9
1, 2, 4, 12, 32, 60, 216, 252, 912, 1494, 3960, 4092, 23904, 16380, 65016, 130920, 324960, 262140, 1569132, 1048572, 6281280, 8388072, 16769016, 16777212, 134150880, 100663050, 268402680, 536865840, 1610449344, 1073741820, 8589664080, 4294967292, 25768888320
OFFSET
0,2
COMMENTS
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
FORMULA
a(n) = Sum_{d|n} A323860(d, n/d). - Andrew Howroyd, Aug 21 2019
EXAMPLE
The a(4) = 32 arrays:
[0001][0010][0011][0100][0110][0111][1000][1001][1011][1100][1101][1110]
.
[00] [00] [01] [01] [10] [10] [11] [11]
[01] [10] [00] [11] [00] [11] [01] [10]
.
[0] [0] [0] [0] [0] [0] [1] [1] [1] [1] [1] [1]
[0] [0] [0] [1] [1] [1] [0] [0] [0] [1] [1] [1]
[0] [1] [1] [0] [1] [1] [0] [0] [1] [0] [0] [1]
[1] [0] [1] [0] [0] [1] [0] [1] [1] [0] [1] [0]
MATHEMATICA
apermatQ[m_]:=UnsameQ@@Join@@Table[RotateLeft[m, {i, j}], {i, Length[m]}, {j, Length[First[m]]}];
zaz[n_]:=Join@@(Table[Partition[#, d], {d, Divisors[n]}]&/@Tuples[{0, 1}, n]);
Table[Length[Select[zaz[n], apermatQ]], {n, 10}]
KEYWORD
nonn
AUTHOR
Gus Wiseman, Feb 04 2019
EXTENSIONS
Terms a(18) and beyond from Andrew Howroyd, Aug 21 2019
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 September 20 18:47 EDT 2024. Contains 376075 sequences. (Running on oeis4.)