A135107 Integers n such that 10^n+97 is prime.
1, 2, 3, 9, 10, 14, 19, 67, 94, 201, 241, 589, 934, 1151, 1179, 4957, 6329, 13621, 26425
Offset: 1
Examples
n = 3 is a member because 10^3+97 = 1000+97 = 1097, which is prime.
Links
Programs
-
Magma
[n: n in [1..500]| IsPrime(10^n+97)]; // Vincenzo Librandi, Nov 02 2014
-
Mathematica
Select[Range[2000], PrimeQ[10^# + 97] &] (* Vincenzo Librandi, Nov 02 2014 *)
Extensions
a(14)-a(19) from Robert Price, Nov 06 2010
Edited by Ray Chandler, Dec 23 2010
Comments