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.

A044960 Numbers with no two equally numerous base 11 digits.

Original entry on oeis.org

1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 24, 36, 48, 60, 72, 84, 96, 108, 120, 121, 122, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 144, 145, 155, 157, 166, 169, 177, 181, 188, 193, 199, 205, 210, 217, 221, 229, 232, 241, 242
Offset: 1

Views

Author

Keywords

Programs

  • Mathematica
    ntenQ[n_]:=Module[{d=Select[DigitCount[n,11],#>0&]},Length[d] == Length[ Union[d]]]; Select[Range[250],ntenQ] (* Harvey P. Dale, Dec 18 2012 *)