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

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A013588 Smallest positive integer not the determinant of an n X n {0,1}-matrix. 7

%I #33 Aug 23 2023 10:52:35

%S 2,2,3,4,6,10,19,41,103,269

%N Smallest positive integer not the determinant of an n X n {0,1}-matrix.

%C This majorizes the sequence of maximal determinants only up to the 6th term. It is conjectured that the sequence of maximal determinants majorizes this for all later terms.

%C The first term needing verification is a(11) >= 739. a(12) = 2173 has been verified by Brent, Orrick, Osborn, and Zimmermann in 2010. Lower bounds for the next terms: a(13) >= 6739, a(14) >= 21278, a(15) >= 69259, a(16) >= 230309. - _Hugo Pfoertner_, Jan 03 2020

%H Swee Hong Chan and Igor Pak, <a href="https://arxiv.org/abs/2308.10214">Computational complexity of counting coincidences</a>, arXiv:2308.10214 [math.CO], 2023. See p. 18.

%H R. Craigen, <a href="https://www.researchgate.net/publication/265824172_The_range_of_the_determinant_function_on_the_set_of_nn_01-_matrices">The Range of the Determinant Function on the Set of n X n (0,1)-Matrices</a>, J. Combin. Math. Combin. Computing, 8 (1990) pp. 161-171.

%H William P. Orrick, <a href="https://arxiv.org/abs/math/0401179">The maximal {-1, 1}-determinant of order 15</a>, arXiv:math/0401179 [math.CO], 2004.

%H William P. Orrick, <a href="http://www.indiana.edu/~maxdet/spectrum.html">Spectrum of the determinant function</a>.

%H G. R. Paseman, <a href="http://web.archive.org/web/20070211014636/http://grpmath.prado.com/icm98sl.html">A Different Approach to Hadamard's Maximum Determinant Problem</a>

%H G. R. Paseman, <a href="http://web.archive.org/web/20050215232056/http://grpmath.prado.com/icm.html">Related Material</a>

%H Miodrag Zivkovic, <a href="http://poincare.matf.bg.ac.rs/~ezivkovm/publications/massive_computation.pdf">Massive computation as a problem solving tool</a>, in Proceedings of the 10th Congress of Yugoslav Mathematicians (Belgrade, 2001), pages 113-128. Univ. Belgrade Fac. Math., Belgrade, 2001.

%H M. Zivkovic, <a href="https://arxiv.org/abs/math/0511636">Classification of small (0,1) matrices</a>, arXiv:math/0511636 [math.CO], 2005.

%H <a href="/index/Mat#binmat">Index entries for sequences related to binary matrices</a>

%H <a href="/index/De#determinants">Index entries for sequences related to maximal determinants</a>

%e There is no 3 X 3 {0,1}-matrix with determinant 3, as such a matrix must have a row with at least one 0 in it.

%o (Python)

%o from itertools import product

%o from sympy import Matrix

%o def A013588(n):

%o s, k = set(Matrix(n,n,p).det() for p in product([0,1],repeat=n**2)), 1

%o while k in s:

%o k += 1

%o return k # _Chai Wah Wu_, Oct 01 2021

%Y Cf. A003432.

%K nice,more,hard,nonn

%O 1,1

%A Gerhard R. Paseman (paseman(AT)prado.com)

%E Extended by William Orrick, Jan 12 2006. a(7), a(8) and a(9) computed by Miodrag Zivkovic. a(7) and a(8) independently confirmed by Antonis Charalambides. a(10) computed by William Orrick.

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | 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 April 20 11:10 EDT 2024. Contains 371838 sequences. (Running on oeis4.)