A023074 Positive numbers k such that k and 3*k are anagrams in base 8 (written in base 8).
1463, 1562, 2156, 14630, 14763, 15404, 15602, 15620, 15762, 17562, 20156, 21560, 21576, 21756, 23736, 103154, 103262, 104153, 115304, 115403, 120326, 123357, 143562, 146300, 147630, 147763, 153041, 153104, 153705, 154004, 154031, 154040
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[{#, 3*#}, 8] &] (* Amiram Eldar, Aug 07 2025 *)