OFFSET
1,2
COMMENTS
There are no terms >= 2^12 because 2^24-1 is the largest eight-digit octal number.
EXAMPLE
110 is in the sequence because 110^2 = 12100 = 27504_8 and no octal digit occurs more than once.
MATHEMATICA
Select[Range[2^12], DuplicateFreeQ[IntegerDigits[#^2, 8]] &] (* Michael De Vlieger, Oct 12 2024 *)
PROG
(Python)
for k in range(1, 2**12):
octal = format(k**2, "o")
if len(octal) == len(set(octal)): print(k, end=", ")
CROSSREFS
KEYWORD
base,fini,full,nonn
AUTHOR
Kalle Siukola, Oct 08 2024
STATUS
approved