Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
A283246
Numbers k such that (17*10^k - 179)/9 is prime.
0
4, 5, 10, 13, 16, 106, 130, 148, 880, 1261, 2560, 2629, 3730, 5284, 7411, 8255, 9091, 9490, 10171, 14033, 25618, 39382, 47452
OFFSET
1,1
COMMENTS
For k > 1, numbers k such that the digit 1 followed by k-2 occurrences of the digit 8 followed by the digits 69 is prime (see Example section).
a(24) > 2*10^5.
EXAMPLE
5 is in this sequence because (17*10^5 - 179)/9 = 188869 is prime.
Initial terms and associated primes:
a(1) = 4, 18869;
a(2) = 5, 188869;
a(3) = 10, 18888888869;
a(4) = 13, 18888888888869;
a(5) = 16, 18888888888888869; etc.
MATHEMATICA
Select[Range[2, 100000], PrimeQ[(17*10^# - 179)/9] &]
PROG
(PARI) is(n)=isprime((17*10^k - 179)/9) \\ Charles R Greathouse IV, Mar 05 2017
KEYWORD
nonn,more,hard
AUTHOR
Robert Price, Mar 05 2017
STATUS
approved