OFFSET
1,1
EXAMPLE
4 is in the list because 4^4=256, which has the same digits as 5^4=625.
So the terms 4 and 5 are paired. S are 32 and 49. - N. J. A. Sloane, Jun 17 2024
MATHEMATICA
Sort[Flatten[
Select[Gather[
Table[{n, n^4, Sort[IntegerDigits[n^4]]}, {n, 1, 2000}],
Last[#1] == Last[#2] &], Length[#] > 1 &], 1][[All, 1]]]
PROG
(Python) # uses imports, functions at A188065
print(list(islice(A188065_gen(root=4), 50))) # Michael S. Branicky, May 27 2024
CROSSREFS
KEYWORD
nonn,base,less
AUTHOR
Erich Friedman, May 27 2024
STATUS
approved