I.e., is there a sequence of primes whose decimal expansions have the following form:
$$a_1,\ a_1a_2,\ a_1a_2a_3,\ a_1a_2a_3a_4, \dots$$
What about with the order of the digits reversed, so each number's decimal representation is a final segment of the next one's? (Or any other interesting variation of restrictions?)
What about in other bases?
In binary, neither is possible. Starting with $2 = 10_2$, adding digits to the left would give even numbers greater than 2, hence composite. Adding to the right eventually hits 95. More generally it's clear that you'd have to add a $1$ digit, meaning that the sequence is of the form $x_{n+1} = 2x_n + 1$ with $x_0 = 10_2 = 2$. This has the general form $3\cdot 2^n - 1$. Since 2, 3, and 5 are primes, this expression will be congruent to $0\pmod 5$ every $5$ terms.