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.

Showing 1-2 of 2 results.

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 *)

A032419 Numbers k such that 139*2^k + 1 is prime.

Original entry on oeis.org

2, 14, 914, 12614, 335522, 1567874
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Maple
    select(k->isprime(139*2^k+1),[$0..1000])[]; # Muniru A Asiru, Dec 18 2018
  • Mathematica
    Select[Range[1000], PrimeQ[139*2^# + 1] & ] (* Robert Price, Dec 18 2018 *)
  • PARI
    is(n)=ispseudoprime(139*2^n+1) \\ Charles R Greathouse IV, Jun 07 2017

Extensions

One more term (from the Ballinger-Keller web page) from M. F. Hasler, Apr 18 2007
a(6) from the Ray Ballinger and Wilfrid Keller link by Robert Price, Dec 18 2018
Showing 1-2 of 2 results.