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!)
A215724 Maximum absolute value of determinant of n X n (1,-1)-Toeplitz matrix. 3
1, 2, 4, 16, 48, 160, 576, 2560, 12288, 73728, 327680, 2097152, 14929920, 68853760, 390905856, 2363752448 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
REFERENCES
Warren D. Smith, Posting to the Math Fun Mailing List, August 18, 2012.
LINKS
Lucas A. Brown, A215724.py.
Wikipedia, Toeplitz Matrix
EXAMPLE
a(2) = 2:
1 1
-1 1
a(3) = 4:
1 1 1
-1 1 1
1 -1 1
a(6) = 160
1 -1 1 1 1 1
-1 1 -1 1 1 1
-1 -1 1 -1 1 1
-1 -1 -1 1 -1 1
1 -1 -1 -1 1 -1
1 1 -1 -1 -1 1
MAPLE
a:=proc(n)
local T, b, U, M, d, r;
T:= combinat:-cartprod([seq({-1, 1}, j = 1..2*n-1)]);
b:= 0;
while not T[finished] do
U := T[nextvalue]();
M := LinearAlgebra:-ToeplitzMatrix(U, n);
d:= abs(LinearAlgebra:-Determinant(M)):
if d > b then b := d; end if;
end do;
return b;
end proc:
CROSSREFS
Cf. A086432 (same for circulant (0,1) matrices), A215724 (same for circulant (+1,-1) matrices).
Sequence in context: A103435 A119000 A034917 * A003433 A153951 A248748
KEYWORD
nonn,hard,more
AUTHOR
W. Edwin Clark, Aug 22 2012
EXTENSIONS
a(15) from Lucas A. Brown, Sep 06 2022
a(16) from Lucas A. Brown, Nov 03 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 April 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)