A133287 Decimal numbers that when converted to hexadecimal produce a number that uses the same digits as the original number.
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 53, 371, 913, 4100, 5141, 5412, 6182, 8200, 9241, 75120, 75121, 75122, 75123, 75124, 75125, 75126, 75127, 75128, 75129, 75621, 86150, 91465, 98711, 99481
Offset: 1
Examples
53 = 35_16; 371 = 173_16; 913 = 391_16; 4100 = 1004_16.
Programs
-
Mathematica
Select[Range[0, 10000], Sort[IntegerDigits[#, 10]] == Sort[IntegerDigits[#, 16]] &] (* Alonso del Arte, Mar 04 2013 *)
Comments