cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-2 of 2 results.

A217990 Size of largest semigroup generated by one Boolean n X n matrix.

Original entry on oeis.org

1, 2, 5, 10, 17, 26, 37, 50, 65, 82, 101, 122, 145, 170, 197, 226, 257, 290, 420
Offset: 1

Views

Author

Jeffrey Shallit, Oct 17 2012

Keywords

Examples

			a(4) = 10: the matrix [[0,0,0,1], [0,0,1,0], [1,0,0,0], [0,1,1,0]] generates a semigroup of order 10 under Boolean matrix multiplication.
		

References

  • J. Denes, K. H. Kim, and F. W. Roush, Automata on one symbol, in Studies in Pure Mathematics: To the Memory of Paul Turan, Birkhäuser, 1983, pp. 127-134.

Crossrefs

Formula

For n < 19, a(n) = n^2 - 2n + 2. For large n, l(n) <= a(n) < n^2 - 2n + 2 + l(n), where l(n) is Landau's function (A000793). It seems the exact value is still unknown.

A358784 Size of largest semigroup generated by three n X n boolean matrices.

Original entry on oeis.org

2, 16, 440
Offset: 1

Views

Author

Jeffrey Shallit, Nov 30 2022

Keywords

Comments

Here the semigroup is under boolean matrix multiplication (not the same as GF(2) matrix multiplication). It is known that a(4) >= 24846, generated by the three matrices [[0,0,0,1],[1,0,0,0],[0,1,0,0],[0,0,1,0]] and [[0,0,0,1],[0,0,1,0],[0,1,0,0],[1,0,0,1]] and [[0,0,0,0],[0,0,0,1],[0,0,1,0],[0,1,0,0]].

Examples

			For n = 1 the maximum size is 2, generated by the three matrices [0] and [1] and [1].
For n = 2 the maximum size is 16, generated by the three matrices [[0,1],[1,1]] and [[0,1],[1,0]] and [[0,0],[0,1]].
For n = 3 the maximum size is 440, generated by the three matrices [[0,0,1],[1,0,0],[0,1,0]] and [[0,0,1],[0,1,0],[1,0,1]] and [[0,0,0],[0,0,1],[0,1,0]].
		

Crossrefs

Cf. A217990 (for one matrix); A202140 (for two matrices).
Showing 1-2 of 2 results.