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.

A160033 Primes of the form 2^(2^k)+757.

Original entry on oeis.org

761, 773, 1013, 66293, 18446744073709552373, 340282366920938463463374607431768212213, 115792089237316195423570985008687907853269984665640564039457584007913129640693
Offset: 1

Views

Author

Cino Hilliard, Apr 30 2009

Keywords

Comments

Terms given correspond to k= 1, 2, 3, 4, 6, 7 and 8.
Next term >= 2^2^26 + 757. - Charles R Greathouse IV, Jun 07 2016

Crossrefs

Cf. similar sequences listed in A273547.

Programs

  • Magma
    [a: n in [0..10] | IsPrime(a) where a is 2^(2^n)+ 757]; // Vincenzo Librandi, Jun 05 2016
  • Mathematica
    Select[Table[2^(2^n) + 757, {n, 0, 10}], PrimeQ] (* Vincenzo Librandi, Jun 05 2016 *)
  • PARI
    g(n,m) = for(x=0,n,y=2^(2^x)+m;if(ispseudoprime(y),print1(y",")))