OFFSET
1,1
EXAMPLE
All numbers 0 to 9 have squares containing only digits of frequency 1: 0, 1, 4, 9, 16, 25, 36, 49, 64, 81. See A119509 for the positive terms.
MATHEMATICA
cnt = 0; x = 0; Table[While[x < 10^n, If[Union[Last[Transpose[Tally[IntegerDigits[x^2]]]]] == {1}, cnt++]; x++]; cnt, {n, 5}]
CROSSREFS
KEYWORD
nonn,base
AUTHOR
T. D. Noe, Jun 21 2013
STATUS
approved