Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
A294945
Numbers k such that 6*10^k - 91 is prime.
0
2, 6, 25, 30, 45, 98, 296, 498, 627, 1001, 1995, 1998, 2518, 3208, 3753, 4130, 7159, 7660, 10840, 16187, 24744, 28345, 31499, 32999, 44838, 60959, 88938, 209846
OFFSET
1,1
COMMENTS
For k > 1, numbers k such that the digit 5 followed by k-2 occurrences of the digit 9 followed by the digits 09 is prime (see Example section).
a(29) > 3*10^5.
EXAMPLE
2 is in this sequence because 6*10^2 - 91 = 509 is prime.
Initial terms and associated primes:
a(1) = 2, 509;
a(2) = 6, 5999909;
a(3) = 25, 59999999999999999999999909;
a(4) = 30, 5999999999999999999999999999909;
a(5) = 45, 5999999999999999999999999999999999999999999909; etc.
MATHEMATICA
Select[Range[2, 100000], PrimeQ[6*10^# - 91] &]
PROG
(PARI) isok(k) = isprime(6*10^k - 91); \\ Michel Marcus, Nov 12 2017
KEYWORD
nonn,more,hard
AUTHOR
Robert Price, Nov 11 2017
EXTENSIONS
Terms reordered into ascending order by Robert Price, Apr 03 2022
a(28) from Robert Price, Jul 12 2023
STATUS
approved