OFFSET
1,2
COMMENTS
Subsequence of A046829. - R. J. Mathar, Oct 13 2008
EXAMPLE
1276^2 = 1628176, which contains the digits 1,2,7,6 in that order.
PROG
(Python)
from itertools import count, islice
def A052212_gen(startvalue=1): # generator of terms >= startvalue
for k in count(max(startvalue, 1)):
c = iter(str(k**2))
if all(map(lambda b:any(map(lambda a:a==b, c)), str(k))):
yield k
CROSSREFS
KEYWORD
base,easy,nonn
AUTHOR
Erich Friedman, Jan 29 2000
EXTENSIONS
Definition clarified by N. J. A. Sloane, Apr 04 2023
STATUS
approved