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.

A322749 Primes in A032420.

Original entry on oeis.org

3, 5, 7, 31, 37, 41, 61, 103, 137, 2053, 125887, 968467
Offset: 1

Views

Author

Muniru A Asiru, Dec 25 2018

Keywords

Comments

Equivalently, primes p such that 141*2^p+1 is prime.

Crossrefs

Subsequence of A032420.

Programs

  • GAP
    Filtered([1..400],p->IsPrime(p) and IsPrime(141*2^p+1));
  • Maple
    select(p->isprime(p) and isprime(141*2^p+1),[$1..400]);
  • Mathematica
    Select[Prime[Range[140]],PrimeQ[141*2^#+1]&] (* Harvey P. Dale, Sep 04 2023 *)