I came across this question: How can we turn any number into a prime number by simply adding more digits? While trying different approaches to find an algorithm that increases the chances of finding a prime this way I discovered the six padded primes:
Start with an prime $p>5$ then add a digit 6 before the last digit, repeat the process until the result is prime. This table shows the results for p up to 100: \begin{align*} 7 && 67 \\ 11 && 16661 \\ 13 && 163 \\ 17 && 167 \\ 19 && 1669 \\ 23 && 263 \\ 29 && 269 \\ 31 && 3666661 \\ 37 && 367 \\ 41 && 461 \\ 43 && 463 \\ 47 && 467 \\ 53 && 563 \\ 59 && 569 \\ 61 && 661 \\ 67 && 666667 \\ 71 && 761 \\ 73 && 76666663 \\ 79 && 769 \\ 83 && 863 \\ 89 && 8669 \\ 97 && 967 \\ \end{align*} There were only 2 numbers below $200000$ for which I could not find a result: $15731$ and $75989$. My computer finally found a solution for the first padded with 7460 sixes resulting in a 7465 digit prime number. $75989$ was checked up to 15000 digits.
Question:
Is $75986\cdots69$ ever prime or can it be proved there is a six padded prime for every prime > 5