I recently saw a question Is there any perfect square in the sequence $12,123,1234,12345,...$?
This led to thinking about a new question.
Consider this sequence that is the sequence formed by concatenating next digit at right-hand end (where the next digit after 9 is again 0).
ie $1, 12, 123, 1234, 12345, 123456, 1234567, … 123456789012 …$
Is there any perfect square in the sequence?
NO
Computational check for numbers mod powers of 10.
Let us assume that the number is (1234567890)..k..123456
Test of divisibility by 3: 1+2+3+4+5+6+7+8+9+0 = 45 1+2+3+4+5+6 = 21 The sum of all digits of a number is 45*k+21 which is divisible by 3
Test of divisibility by 9: 45*k+21 can never be divisible by 9
A perfect square divisible by 3 but not divisible by 9 cannot exist.