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.

A044955 Numbers with no two equally numerous base 6 digits.

Original entry on oeis.org

1, 2, 3, 4, 5, 7, 14, 21, 28, 35, 36, 37, 42, 43, 44, 45, 46, 47, 49, 50, 55, 57, 61, 64, 67, 71, 72, 74, 79, 80, 84, 85, 86, 87, 88, 89, 92, 93, 98, 100, 104, 107, 108, 111, 115, 117, 122, 123, 126, 127, 128, 129, 130, 131, 135, 136, 141
Offset: 1

Views

Author

Keywords

Programs

  • Mathematica
    en6Q[n_]:=Module[{d6=DeleteCases[DigitCount[n,6],0]},Length[d6] == Length[ Union[ d6]]]; Select[Range[150],en6Q] (* Harvey P. Dale, Feb 23 2022 *)