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.

A322301 Primes p such that 5*2^p + 1 is also prime.

Original entry on oeis.org

3, 7, 13, 127, 3313, 23473, 819739
Offset: 1

Views

Author

Vincenzo Librandi, Dec 19 2018

Keywords

Comments

Primes in A002254.

Crossrefs

Programs

  • Magma
    [p: p in PrimesUpTo (10000) | IsPrime(5*2^p+1)];
  • Maple
    select(p->isprime(p) and isprime(5*2^p+1),[$0..5000]); # Muniru A Asiru, Dec 19 2018
  • Mathematica
    Select[Prime[Range[4000]], PrimeQ[5 2^# + 1] &]