A057200 Numbers k such that 2^k + 17 is prime.
1, 13, 21, 33, 81, 129, 285, 297, 769, 3381, 4441, 7065, 77121, 133437, 184189, 191745, 1279921
Offset: 1
Links
- Henri Lifchitz and Renaud Lifchitz (Editors), Search for 2^n+17, PRP Top Records.
Crossrefs
Programs
-
Magma
[n: n in [0..1000] | IsPrime(2^n+17)]; // Vincenzo Librandi, Aug 28 2015
-
Mathematica
Do[ If[ PrimeQ[ 2^n + 17 ], Print[ n ]], {n, 0, 11811} ] Select[Range[10000], PrimeQ[2^# + 17] &] (* Vincenzo Librandi, Aug 28 2015 *)
-
PARI
is(n)=isprime(2^n+17) \\ Charles R Greathouse IV, Feb 17 2017
Extensions
a(13)-a(16) from Robert Price, Aug 24 2015
Edited by M. F. Hasler, Jul 18 2016
a(17) found by Stefano Morozzi, added by Elmo R. Oliveira, Nov 19 2023
Comments