A232661 Numbers n such that n and n^6 have the same set of digits.
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
Examples
{0, 1, 3, 6, 7, 8, 9} - the set of digits of 1380796 and of 1380796^6, so 1380796 is in the sequence.
Links
- Lars Blomberg, Table of n, a(n) for n = 1..10000
Programs
-
PARI
for(n=0, 21865409, if(Set(Vec(Str(n)))==Set(Vec(Str(n^6))), print1(n, ", ")));