A291609 Numbers k such that (49*10^k - 67)/9 is prime.
1, 3, 4, 7, 10, 24, 37, 46, 63, 64, 91, 114, 367, 453, 1156, 1347, 1524, 7153, 10893, 13548, 15153, 43093, 61167, 184993
Offset: 1
Examples
4 is in this sequence because (49*10^4 - 67)/9 = 54437 is prime. Initial terms and associated primes: a(1) = 1, 47; a(2) = 3, 5437; a(3) = 4, 54437; a(4) = 7, 54444437; a(5) = 10, 54444444437; etc.
Links
- Makoto Kamada, Factorization of near-repdigit-related numbers.
- Makoto Kamada, Search for 54w37.
Programs
-
Mathematica
Select[Range[1, 100000], PrimeQ[(49*10^# - 67)/9] &]
Extensions
a(24) from Robert Price, Mar 15 2019
Comments