A287351 Numbers k such that (10^k*361 - 163)/9 is prime (k > 0).
1, 3, 9, 15, 27, 37, 165, 207, 897, 5761, 16753, 17995, 96567
Offset: 1
Examples
If k = 1 then (10^1*361 - 163)/9 = 383 (prime), so 1 is a term. If k = 9 then (10^9*361 - 163)/9 = 40111111093 (prime), so 9 is a term.
Crossrefs
Cf. A247643.
Programs
-
Mathematica
ParallelMap[ If[ PrimeQ[ (10^# 361-163)/9], #, Nothing] &, Range[6000]]
Extensions
a(13) from Robert Price, Oct 31 2017
Comments