cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A023078 Positive numbers k such that k and 7*k are anagrams in base 8 (written in base 8).

Original entry on oeis.org

1067, 10067, 10337, 10670, 10677, 10767, 100067, 100337, 100670, 100677, 100767, 103370, 103377, 105573, 105672, 106700, 106770, 106777, 107670, 107677, 107767, 1000067, 1000337, 1000670, 1000677, 1000767, 1003370, 1003377, 1005573, 1005672
Offset: 1

Views

Author

Keywords

Crossrefs

Cf. A007094.

Programs

  • Mathematica
    FromDigits[IntegerDigits[#, 8]] & /@ Select[Range[100000], SameQ @@ Sort /@ IntegerDigits[{#, 7*#}, 8] &] (* Amiram Eldar, Aug 07 2025 *)