A023062 Positive numbers k such that k and 3*k are anagrams in base 5 (written in base 5).
1032, 1234, 10032, 10320, 10322, 10432, 11402, 12014, 12234, 12340, 12344, 12434, 100032, 100320, 100322, 100432, 101343, 103200, 103220, 103222, 103321, 104320, 104322, 104432, 110332, 112334, 114002, 114020, 114022, 114402, 120014, 120140
Offset: 1
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Crossrefs
Cf. A007091.
Programs
-
Mathematica
FromDigits[IntegerDigits[#, 5]] & /@ Select[Range[10000], SameQ @@ Sort /@ IntegerDigits[{#, 3*#}, 5] &] (* Amiram Eldar, Aug 06 2025 *)