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.

A350237 Minimum number of 1's in an n X n binary matrix with no zero 3 X 3 submatrix.

Original entry on oeis.org

0, 0, 1, 3, 5, 10, 16, 22, 32, 40, 52, 64, 77, 91, 105, 128
Offset: 1

Views

Author

Jeremy Tan, Dec 21 2021

Keywords

Comments

The submatrix's rows and columns need not be contiguous, so the following matrix does not show a(4) = 1:
....
.1..
....
....

Examples

			a(4) = 3 because the following 4 X 4 binary matrix with 3 1's has no zero 3 X 3 submatrix, and all such matrices with fewer 1's have at least one zero 3 X 3 submatrix:
   1...
   .1..
   ..1.
   ....
		

Crossrefs

Column 3 of A339635.

Formula

a(n) = A347473(n) + 1 = n^2 - A001198(n) + 1.
a(n) = n^2 - A350304(n). - Max Alekseyev, Oct 31 2022

Extensions

a(12)-a(13) from Andrew Howroyd, Dec 23 2021
a(14)-a(15) from Jeremy Tan, Jan 03 2022
a(16) from Jeremy Tan, added by Max Alekseyev, Oct 31 2022