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.

A044953 Numbers with no two equally numerous base 4 digits.

Original entry on oeis.org

1, 2, 3, 5, 10, 15, 16, 17, 20, 21, 22, 23, 25, 26, 29, 31, 32, 34, 37, 38, 40, 41, 42, 43, 46, 47, 48, 51, 53, 55, 58, 59, 60, 61, 62, 63, 64, 69, 81, 84, 85, 86, 87, 89, 93, 101, 106, 117, 127, 128, 138, 149, 154, 162, 166, 168, 169, 170
Offset: 1

Views

Author

Keywords

Programs

  • Mathematica
    ntb4Q[n_]:=Module[{d=DeleteCases[DigitCount[n,4],0]},Length[d] == Length[ Union[d]]]; Select[Range[200],ntb4Q] (* Harvey P. Dale, Jun 22 2013 *)