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!)
A350931 Maximal determinant of an n X n Toeplitz matrix using the integers 1 to 2*n - 1. 10
1, 1, 7, 105, 2294, 71753, 3051554, 175457984 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Also maximal absolute value of the determinant of an n X n Hankel matrix using the integers 1 to 2*n - 1. - Stefano Spezia, Dec 22 2023
LINKS
Lucas A. Brown, A350930+1.py
Wikipedia, Toeplitz Matrix
EXAMPLE
a(2) = 7:
[3 1]
[2 3]
a(3) = 105:
[5 1 3]
[4 5 1]
[2 4 5]
PROG
(Python)
from itertools import permutations
from sympy import Matrix
def A350931(n): return max(Matrix([p[n-1-i:2*n-1-i] for i in range(n)]).det() for p in permutations(range(1, 2*n))) # Chai Wah Wu, Jan 27 2022
CROSSREFS
Cf. A322908, A323254, A350930 (minimal).
Sequence in context: A131869 A132867 A145666 * A344445 A238464 A360347
KEYWORD
nonn,hard,more
AUTHOR
Stefano Spezia, Jan 25 2022
EXTENSIONS
a(5) from Alois P. Heinz, Jan 25 2022
a(6) from Pontus von Brömssen, Jan 26 2022
a(7) from Lucas A. Brown, Aug 28 2022
STATUS
approved

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 May 10 11:28 EDT 2024. Contains 372387 sequences. (Running on oeis4.)