login
A034290
Cubes that have some nontrivial permutation of digits that is also a cube.
1
125, 512, 42875, 54872, 125000, 512000, 1030301, 1061208, 1331000, 5639752, 7529536, 8120601, 10793861, 11697083, 16974593, 17173512, 21717639, 24137569, 32461759, 35611289, 36264691, 39651821, 41063625, 42875000, 44738875
OFFSET
1,1
COMMENTS
Leading zeros are not allowed.
LINKS
EXAMPLE
125 and 512 are both in the sequence because 5^3 = 125 and 8^3 = 512.
MAPLE
S:= {}:
for x from 1 to 10^3 do
L:= sort(convert(x^3, base, 10));
if assigned(R[L]) then S:= S union {x^3, R[L]}
else R[L]:= x^3
fi
od:
sort(convert(S, list)); # Robert Israel, Nov 12 2015
MATHEMATICA
Select[Range[360]^3, AnyTrue[Rest[FromDigits /@ Permutations@ IntegerDigits@ #], Function[x, IntegerQ@ Power[x, 1/3] && IntegerLength@ x == IntegerLength@ #]] &] (* Michael De Vlieger, Nov 12 2015 *)
CROSSREFS
Sequence in context: A128993 A061450 A067974 * A295025 A070308 A211176
KEYWORD
nonn,base
STATUS
approved