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.

A301370 Maximum determinant of an n X n (0,1)-matrix that has exactly 2*n ones.

Original entry on oeis.org

0, 2, 2, 3, 4, 4, 6, 8, 9, 12, 16, 18, 24, 32, 36, 48, 64
Offset: 2

Views

Author

Hugo Pfoertner, Mar 20 2018

Keywords

Comments

A proved upper bound is abs(a(n)) <= 6^(n/6), provided by Bruhn and Rautenbach. A conjectured sharper bound is abs(a(n)) <= 2^(n/3), provided by the same authors. For n=3*k, the bound is achieved by diagonally concatenating blocks ((1 1 0)(0 1 1)(1 0 1)).
The sharper bound is proved by Araujo, Balogh, and Wang in their article. See link. - Hugo Pfoertner, Nov 04 2020

Examples

			a(8) = 6 because no (0,1)-matrix with 2*8 ones with a greater determinant exists than
  ( 1 0 0 0 0 0 0 0 )
  ( 0 1 0 1 0 0 0 0 )
  ( 0 0 1 0 1 1 0 0 )
  ( 0 0 0 1 0 0 1 0 )
  ( 0 0 0 0 1 0 0 1 )
  ( 0 0 0 0 0 1 0 1 )
  ( 0 1 0 0 0 0 1 0 )
  ( 0 0 1 0 0 0 0 1 )
		

Crossrefs