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.

Showing 1-2 of 2 results.

A215723 Maximum determinant of an n X n circulant (1,-1)-matrix.

Original entry on oeis.org

1, 0, 4, 16, 48, 128, 512, 2304, 6912, 22528, 273408, 2097152, 14929920, 50331648, 390905856, 1644167168, 12279939072, 69660573696, 865782202368, 5566277615616, 41248865910784, 215055782117376, 2385859554836480, 25783171861708800, 146322302697472000, 1107244165160239104, 11063259546716733440, 76787161889935196160
Offset: 1

Views

Author

W. Edwin Clark, Aug 22 2012

Keywords

Comments

a(n) is divisible by 2^(n-1), see A215897. [Joerg Arndt, Aug 26 2012]

References

  • Warren D. Smith, Posting to the Math Fun Mailing List August 18, 2012.

Crossrefs

Cf. A003433, A086432 (same for circulant (0,1) matrices), A215724 (same for (1,-1)-Toeplitz matrices).
Cf. A215897 ( =a(n)/2^(n-1) ).

Programs

  • Maple
    a:=proc(n)
    local T, b, U, M,d,r;
    T:= combinat:-cartprod([seq({-1, 1}, j = 1 .. n)]);
    b:= 0;
    while not T[finished] do
       U := T[nextvalue]();
       M := Matrix(n, shape = Circulant[U]);
       d:= LinearAlgebra:-Determinant(M):
       if d > b then b := d; end if;
    end do;
    return b;
    end proc:
  • PARI
    a(n)={my(m=0); for(p=n>1, 2^(n-1)-1, m=max(m, matdet(matrix(n, n, i, j, 1-2*bittest(p, (i-j)%n))))); m} /* For illustrative purpose only: becomes slow for n>15 */ /* M. F. Hasler, Aug 25 2012 */

Extensions

a(16)-a(22) from Joerg Arndt, Aug 25 2012
a(23)-a(28) (as calculated by Warren Smith) from W. Edwin Clark, Sep 02 2012

A086432 Maximum of |det(A)| where A is an n X n circulant (0,1) matrix over the integers.

Original entry on oeis.org

1, 1, 2, 3, 4, 9, 32, 45, 95, 275, 1458, 2240, 6561, 19952, 131072, 214245, 755829, 2994003, 19531250, 37579575, 134534444, 577397064, 4353564672, 10757577600, 31495183733, 154611524732, 738139162166, 3124126889325, 11937232425585, 65455857159975
Offset: 1

Views

Author

Yuval Dekel (dekelyuval(AT)hotmail.com), Sep 08 2003

Keywords

Crossrefs

Cf. A086323.
Cf. A215723 (same for circulant (+1,-1) matrices), A215724 (same for (1,-1)-Toeplitz matrices).

Programs

  • Mathematica
    Do[m=0;j=i-1;n=k=2^j; Do[l=IntegerDigits[k,2]; m=Max[m,Det[NestList[RotateRight,l,j]]]; k++,{n}]; Print[m], {i,30}] (* Hans Havermann, Dec 05 2012 *)

Extensions

More terms from Vladeta Jovovic, Sep 09 2003
a(19)-a(22) from Joerg Arndt, Aug 25 2012
a(23)-a(30) from Hans Havermann, Dec 05 2012
Showing 1-2 of 2 results.