A319217 Integers k such that (13*2^k)^8 + 1 is prime.
4, 9, 13, 38, 42, 67, 133, 134, 142, 155, 167, 226, 654, 5787, 6703, 12704, 25969, 70198, 78060, 235304
Offset: 1
Examples
4 is a term because (13*2^4)^8+1 = 3503536769037500417 is a prime number.
Links
- Chris K. Caldwell, The Prime Database: 815730721*2^1882432+1
Programs
-
Magma
[n: n in [1..700] | IsPrime((13*2^n)^8+1)]; // Vincenzo Librandi, Sep 21 2018
-
Mathematica
Select[Range[700], PrimeQ[(13 2^#)^8 + 1] &] (* Vincenzo Librandi, Sep 21 2018 *)
-
PARI
isok(k) = ispseudoprime((13*2^k)^8+1); \\ Altug Alkan, Sep 21 2018
Comments