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!)
A350858 Minimal permanent of an n X n matrix whose elements are a permutation of the first n^2 prime numbers. 7
1, 2, 29, 3664, 1820642, 2276752048, 5697057180536 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
EXAMPLE
a(2) = 29:
2 3
5 7
a(3) = 3664:
2 3 5
7 13 19
11 17 23
PROG
(Python)
from itertools import permutations
from sympy import Matrix
def A350858(n): return 1 if n == 0 else min(Matrix(n, n, p).per() for p in permutations(prime(m) for m in range(1, n**2+1))) # Chai Wah Wu, Jan 21 2022
CROSSREFS
Cf. A114533, A180128, A350565, A350859 (maximal).
Sequence in context: A252042 A295426 A055559 * A345041 A114533 A180128
KEYWORD
nonn,hard,more
AUTHOR
Stefano Spezia, Jan 19 2022
EXTENSIONS
a(4)-a(6) from Hugo Pfoertner, Jan 21 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 16 00:00 EDT 2024. Contains 371696 sequences. (Running on oeis4.)