OFFSET
1,1
COMMENTS
There are A225428(10)=597959 terms in this sequence. The last term is 99887301530267526144 = 9994363488^2. - Hugo Pfoertner, May 12 2023
LINKS
Patrick De Geest, Numbers whose digits occur with same frequency
MATHEMATICA
Select[Table[n^2, {n, 6760}], Union[Last[Transpose[Tally[IntegerDigits[#]]]]] == {2} &] (* Jayanta Basu, Jun 17 2013 *)
PROG
(Python)
from itertools import islice
from collections import Counter
def afull(): yield from (x**2 for x in range(10**10) if set(Counter(str(x**2)).values()) == {2})
print(list(islice(afull(), 47))) # Michael S. Branicky, May 12 2023
CROSSREFS
KEYWORD
nonn,base,fini
AUTHOR
Patrick De Geest, Dec 15 1999
STATUS
approved