UPD: To make it clearer, here is a statement:
For sequence $A = \{i\in\mathbb{N}_+\mid a_i=a_{i-1}\times 10^{\lfloor(\lg(10n))\rfloor} + n\}$, where $\lg n=\log_{10} n$, show whether there is a prime number in the sequence. If there isn't, please prove it.
I ran into the problem accidentally.
To be clear, you can check the OEIS sequence A007908.
Using computer, I found no prime number up to 500, that is, $\overline{1234\cdots 499500}$.
Any form of help would be appreciated. Thanks in advance.
As somebody who commented on that sequence, I ruled it down to just 4 remainders modulo 30 long ago. I still can see how to get it down to 8, because these numbers have a property of even numbers being in even places, 0 mod 3 numbers being in 0 mod 3 places, and 0 mod 5 numbers being in 0 mod 5 places. This leaves us with places coprime to 30 which have remainders 1,7,11,13,17,19,23, and 29 modulo 30. Small factors can be dealt with (even on massive numbers) as computed at ...
– Roddy MacPhee Jul 25 '22 at 18:00div(n,x)=if(n<=10^znorder(Mod(10,x)),return(n),return(n%(10^znorder(Mod(10,x)))+div(floor(n/(10^znorder(Mod(10,x)))),x)))
– Roddy MacPhee Jul 25 '22 at 18:01