The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A333390 Numbers k such that (2*k)# * 2^k - 1 is prime. 0
1, 2, 3, 4, 5, 12, 17, 22, 26, 28, 30, 50, 120, 186, 215, 246, 323, 1021, 1160, 1404, 1431, 1461, 1786, 2317, 2960, 4484, 4613, 5192, 5345, 6518, 6865, 9951 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
No more terms < 6700.
No more terms < 10^4. - Daniel Suteu, Mar 20 2020
LINKS
PROG
(Python)
from sympy.ntheory.generate import primorial, isprime
A333390_list = [n for n in range(1, 100) if isprime(primorial(2*n, nth=False)*2**n-1)] # Chai Wah Wu, Mar 18 2020
(PARI) is(k) = ispseudoprime(lcm(primes([2, 2*k]))*2^k-1); \\ Jinyuan Wang, Mar 20 2020
CROSSREFS
Cf. A034386 (n#), A084406.
Sequence in context: A103651 A093713 A057472 * A367408 A117577 A109849
KEYWORD
nonn,hard,more
AUTHOR
L. Joris Perrenet, Mar 18 2020
EXTENSIONS
a(31) from Jinyuan Wang, Mar 20 2020
a(32) from Daniel Suteu, Mar 20 2020
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 June 6 11:36 EDT 2024. Contains 373127 sequences. (Running on oeis4.)