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.

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

Original entry on oeis.org

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

Views

Author

Keywords

Crossrefs

Cf. A007091.

Programs

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