I looked at a table of primes and observed the following:
If we choose $7$ can we concatenate one digit to the left so as to form a new prime number? Yes, concatenate $1$ to obtain $17$. Can we do the same with $17$? Yes, concatenate $6$ to obtain $617$. And with $617$? Yes, concatenate $2$ to obtain $2617$. Then we can form $62617$. And I could not continue since table gives primes with the last entry $104729$.
Now some terminology. Call a prime number $a_1...a_k$ a survivor of order $m$ if there exist $m$ digits $b_1,...,b_m$ (all different from zero) so that the numbers $b_1a_1...a_k$ and $b_2b_1a_1..a_k$ and... and $b_mb_{m-1}...b_1a_1...a_k$ are all prime numbers.
Call a prime number $a_1...a_k$ a survivor of order $+ \infty$ if $a_1...a_k$ is a survivor of order $m$ for every $m \in \mathbb N$.
I would like to know:
Does there exist a survivor of order $+ \infty$?
Also asked on MO, with exactly the same title and content.
Heuristically, almost certainly not.
Let's ask how many survivors of order $\infty$ there are with $d$ digits. Each $d$-digit prime has $9$ possible extensions to a $d+1$ digit number, of which three are divisible by $3$. The probability that $n$ is prime is about $\frac{1}{\ln n}$. Therefore the expected number of prime extensions of a $d$-digit number is $\frac{O(1)}{d+1}$. For each prime extension, the expected number of prime extensions to a $d+2$ digit number is $\frac{O(1)}{d+2}$. The expected total number of $d+m$ digit numbers which are prime and have $m$ prime truncations is therefore less than $\frac{10^d}{d \ln 10} \prod_{i=1}^m \frac{O(1)}{d+i}$, and as $m \to \infty$ this clearly tends to zero at a superexponential rate.
To get a bit more quantitative, if we simply take into account our knowledge that the 9 candidate extensions are not divisible by 2 or 5 then we naïvely estimate the constant hidden by $O(1)$ as $9 \left( 2 \cdot \frac54 \cdot \frac{1}{\ln 10}\right) \approx 9.77$. If we explicitly count the extensions for small primes we get $$\begin{matrix} n & O(1) \\ 1 & 18 \\ 2 & 10.14 \\ 3 & 10.27 \\ 4 & 9.83 \\ 5 & 9.83 \\ 6 & 9.75 \\ 7 & 9.69 \\ 8 & 9.65 \end{matrix}$$ For pessimistic estimates we could use $9$ and for optimistic estimates we could use $10$.