This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A226796 #3 Jun 21 2013 16:47:06 %S A226796 10,59,221,441,611,611,611,611,611,611,611,611,611,611,611,611,611, %T A226796 611,611,611,611,611,611,611,611,611,611,611,611,611,611,611,611,611, %U A226796 611,611,611,611,611,611,611,611,611,611,611,611,611,611,611,611,611,611 %N A226796 Number of nonnegative numbers x < 10^n such that the digits of x^2 occur with an equal frequency of 1. %e A226796 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. %t A226796 cnt = 0; x = 0; Table[While[x < 10^n, If[Union[Last[Transpose[Tally[IntegerDigits[x^2]]]]] == {1}, cnt++]; x++]; cnt, {n, 5}] %Y A226796 Cf. A119509 (positive terms x), A225428 (for 2 digits). %K A226796 nonn,base %O A226796 1,1 %A A226796 _T. D. Noe_, Jun 21 2013