login
A232661
Numbers n such that n and n^6 have the same set of digits.
3
0, 1, 10, 100, 1000, 10000, 100000, 1000000, 1380796, 10000000, 10423786, 10489362, 10532689, 10689247, 10743958, 12645980, 13042697, 13674925, 13807960, 14205893, 14857690, 16892043, 17284360, 17983256, 19046537, 19754203, 20634971, 20637451, 21865409
OFFSET
1,3
LINKS
EXAMPLE
{0, 1, 3, 6, 7, 8, 9} - the set of digits of 1380796 and of 1380796^6, so 1380796 is in the sequence.
PROG
(PARI) for(n=0, 21865409, if(Set(Vec(Str(n)))==Set(Vec(Str(n^6))), print1(n, ", ")));
CROSSREFS
KEYWORD
nonn,base
AUTHOR
STATUS
approved