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.

A160032 Primes of the form 2^(2^k)+93.

Original entry on oeis.org

97, 109, 349, 65629, 4294967389, 18446744073709551709
Offset: 1

Views

Author

Cino Hilliard, Apr 30 2009

Keywords

Comments

Terms given correspond to k = 1, 2, 3, 4, 5 and 6.
Next term >= 2^2^24 + 93. - Charles R Greathouse IV, Jun 07 2016

Crossrefs

Cf. similar sequences listed in A273547.

Programs

  • Magma
    [a: n in [0..15] | IsPrime(a) where a is 2^(2^n)+93]; // Vincenzo Librandi, Jun 07 2016
  • Maple
    select(isprime,[seq(2^(2^n)+93, n=0..15)]); # Robert Israel, Jun 07 2016
  • Mathematica
    Select[Table[2^(2^n) + 93, {n, 0, 15}], PrimeQ] (* Vincenzo Librandi, Jun 07 2016 *)
  • PARI
    g(n,m) = for(x=0,n,y=2^(2^x)+m;if(ispseudoprime(y),print1(y",")))