A023076 Positive numbers k such that k and 5*k are anagrams in base 8 (written in base 8).
1015, 1166, 1337, 10015, 10150, 11165, 11651, 11660, 11766, 12666, 13370, 13377, 100015, 100150, 101165, 101500, 101525, 101534, 102515, 105332, 111650, 111765, 112665, 116402, 116501, 116510, 116526, 116600, 117651, 117660, 117766, 120164
Offset: 1
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Crossrefs
Cf. A007094.
Programs
-
Mathematica
FromDigits[IntegerDigits[#, 8]] & /@ Select[Range[100000], SameQ @@ Sort /@ IntegerDigits[{#, 5*#}, 8] &] (* Amiram Eldar, Aug 07 2025 *)