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-3 of 3 results.

A350565 a(n) is the minimum permanent of an n X n matrix using the integers 1 to n^2.

Original entry on oeis.org

1, 1, 10, 436, 52197, 13300936, 6192060119
Offset: 0

Views

Author

Stefano Spezia and Hugo Pfoertner, Jan 20 2022

Keywords

Comments

a(7) <= 4755379618016 from the matrix
[ 1, 2, 3, 4, 5, 6, 7;
8, 14, 19, 23, 29, 33, 36;
9, 15, 21, 26, 32, 37, 41;
10, 16, 22, 28, 35, 40, 44;
11, 17, 24, 30, 38, 43, 46;
12, 18, 25, 31, 39, 45, 48;
13, 20, 27, 34, 42, 47, 49]. - Pontus von Brömssen, Aug 30 2025

Examples

			a(2) = 10:
  [1, 3;
   2, 4]
.
a(3) = 436:
  [1, 3, 2;
   4, 8, 6;
   5, 9, 7]
.
a(4) = 52197:
  [1,  2,  4,  3;
   6,  9, 15, 12;
   5,  8, 13, 11;
   7, 10, 16, 14]
.
a(5) = 13300936:
  [16,  8, 24, 21, 12;
   18,  9, 25, 23, 13;
    3,  1,  5,  4,  2;
   14,  6, 20, 17, 10;
   15,  7, 22, 19, 11]
.
a(6) = 6192060119:
  [36, 35, 33, 31, 27,  6;
   11, 10,  9,  8,  7,  1;
   34, 32, 30, 28, 25,  5;
   22, 21, 19, 18, 16,  3;
   29, 26, 24, 23, 20,  4;
   17, 15, 14, 13, 12,  2]
		

Crossrefs

Cf. A085000, A350566 (maximum), A350858, A350859, A358486 (elements 0 to n^2-1).

Programs

  • Python
    from itertools import permutations
    from sympy import Matrix
    def A350565(n): return 1 if n == 0 else min(Matrix(n,n,p).per() for p in permutations(range(1,n**2+1))) # Chai Wah Wu, Jan 21 2022

A358487 a(n) is the maximal permanent of an n X n matrix using the integers 0 to n^2 - 1.

Original entry on oeis.org

1, 0, 6, 553, 107140, 40179728, 27312009708
Offset: 0

Views

Author

Stefano Spezia, Nov 18 2022

Keywords

Examples

			a(3) = 553:
     [1, 2, 8;
      7, 5, 0;
      4, 6, 3]
		

Crossrefs

Cf. A350566 (integers 1 to n^2), A358486 (minimal).

Extensions

a(4)-a(6) from Hugo Pfoertner, Nov 19 2022

A358485 a(n) is the maximal determinant of an n X n matrix using the integers 0 to n^2 - 1.

Original entry on oeis.org

1, 0, 6, 332, 36000, 6313388, 1765146660, 731664377274
Offset: 0

Views

Author

Stefano Spezia, Nov 18 2022

Keywords

Comments

427402723914150 <= a(8) <= 427505414757161, 337815614862033534 <= a(9) <= 337888181610225000, 349880703121691699788 <= a(10) <= 349947469107433415221, with upper bounds from corollary 2 of Sigg (2018). - Hugo Pfoertner, Nov 21 2022

Examples

			a(3) = 332:
     [5, 7, 2;
      1, 3, 8;
      6, 0, 4]
		

Crossrefs

Cf. A085000 (integers 1 to n^2), A358486 (minimal permanent), A358487 (maximal permanent).

Extensions

a(4)-a(6) from Hugo Pfoertner, Nov 19 2022
a(7) from Hugo Pfoertner, Nov 21 2022
Showing 1-3 of 3 results.