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.

User: L. Joris Perrenet

L. Joris Perrenet's wiki page.

L. Joris Perrenet has authored 1 sequences.

A333390 Numbers k such that (2*k)# * 2^k - 1 is prime.

Original entry on oeis.org

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, 14493, 14798, 16653, 17372
Offset: 1

Author

L. Joris Perrenet, Mar 18 2020

Keywords

Comments

No more terms < 6700.
No more terms < 10^4. - Daniel Suteu, Mar 20 2020

Crossrefs

Cf. A034386 (n#), A084406.

Programs

  • PARI
    is(k) = ispseudoprime(lcm(primes([2, 2*k]))*2^k-1); \\ Jinyuan Wang, Mar 20 2020
  • 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
    

Extensions

a(31) from Jinyuan Wang, Mar 20 2020
a(32) from Daniel Suteu, Mar 20 2020
a(33)-a(36) from Michael S. Branicky, Jun 26 2024