A287061 Numbers k such that (10^(k+3)*6319 + 863)/9 is prime (k > 0).
11, 19, 23, 31, 73, 257, 613, 5327, 62359
Offset: 1
Examples
11 is a term as (10^(11+3)*6319 + 863)/9 = 70211111111111207 is prime. 23 is a term because (10^(23+3)*6319 + 863)/9 = 70211111111111111111111111207 is prime.
Programs
-
Mathematica
ParallelMap[ If[ PrimeQ[ (10^(#+3)*6319+863)/9], #, Nothing]&, Range[1000]]
-
PARI
is(n) = ispseudoprime((10^(n+3)*6319+863)/9); \\ Altug Alkan, Jul 23 2017
Comments