A023063 Positive numbers k such that k and 4*k are anagrams in base 5 (written in base 5).
1034, 10034, 10340, 10344, 10434, 100034, 100340, 100344, 100434, 102243, 102342, 102423, 103400, 103440, 103444, 104340, 104344, 104434, 1000034, 1000340, 1000344, 1000434, 1002243, 1002342, 1002423, 1003400, 1003440, 1003444, 1004340
Offset: 1
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Crossrefs
Cf. A007091.
Programs
-
Mathematica
FromDigits[IntegerDigits[#, 5]] & /@ Select[Range[30000], SameQ @@ Sort /@ IntegerDigits[{#, 4*#}, 5] &] (* Amiram Eldar, Aug 06 2025 *)