OFFSET
1,1
COMMENTS
The sequence would certainly be infinite and runs of more than four 8's occur relatively frequently. For example, between 1 and 26000, there are two numbers whose squares contain five sequential 8's. These are 12202^2 = 148888804 and 20221^2 = 408888841.
If n is in the sequence, then so are k*10^d+n for all k >= 1, where n^2 has d digits. Therefore the sequence has nonzero lower asymptotic density. Presumably the asymptotic density is 1. - Robert Israel, Mar 29 2018
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
EXAMPLE
For n=1, 1609^2 = 2588881.
MAPLE
filter:= n -> StringTools:-Search("8888", sprintf("%d", n^2))<> 0:
select(filter, [$1..10^5]); # Robert Israel, Mar 29 2018
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Sean Reeves, Mar 28 2018
EXTENSIONS
More terms from Robert Israel, Mar 29 2018
STATUS
approved