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!)
A356865 Minimal absolute value of determinant of a nonsingular n X n symmetric Toeplitz matrix using the integers 1 to n. 8
1, 1, 3, 8, 12, 3, 13, 19, 5, 5, 1, 3, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
Lucas A. Brown, A350953+4+A356865.py
Wikipedia, Toeplitz Matrix
EXAMPLE
a(3) = 8:
1 2 3
2 1 2
3 2 1
a(4) = 12:
2 1 3 4
1 2 1 3
3 1 2 1
4 3 1 2
a(5) = 3:
1 5 2 3 4
5 1 5 2 3
2 5 1 5 2
3 2 5 1 5
4 3 2 5 1
PROG
(Python)
from itertools import permutations
from sympy import Matrix
def A348891(n): return min(d for d in (abs(Matrix([p[i:0:-1]+p[0:n-i] for i in range(n)]).det()) for p in permutations(range(1, n+1))) if d > 0)
CROSSREFS
Cf. A350953 (minimal signed), A350954 (maximal signed), A348891 (prime entries).
Sequence in context: A058565 A170901 A201882 * A050391 A360572 A360937
KEYWORD
nonn,hard,more
AUTHOR
Lucas A. Brown, Sep 01 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 August 10 15:26 EDT 2024. Contains 375056 sequences. (Running on oeis4.)