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.

A023060 Positive numbers k such that k and 3*k are anagrams in base 4 (written in base 4).

Original entry on oeis.org

1023, 10023, 10113, 10230, 10233, 10323, 100023, 100113, 100230, 100233, 100323, 101130, 101133, 101232, 102300, 102330, 102333, 103230, 103233, 103323, 1000023, 1000113, 1000230, 1000233, 1000323, 1001130, 1001133, 1001232, 1002300, 1002330
Offset: 1

Views

Author

Keywords

Crossrefs

Cf. A007090.

Programs

  • Mathematica
    FromDigits[IntegerDigits[#, 4]] & /@ Select[Range[10000], SameQ @@ Sort /@ IntegerDigits[{#, 3*#}, 4] &] (* Amiram Eldar, Aug 06 2025 *)