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.

A146029 Numbers that can be written from base 2 to base 17 using only the digits 0 to 8 (conjectured to be complete).

Original entry on oeis.org

0, 1, 2, 3, 4, 5, 6, 7, 8, 17, 18
Offset: 1

Views

Author

Daniel Mondot, Nov 02 2008

Keywords

Comments

It is a plausible conjecture that there are no more terms, but this has not been proved. - N. J. A. Sloane, Nov 17 2017

Crossrefs

Programs

  • Mathematica
    Select[Range[0, 10^5], Function[n, Times @@ Boole@ Map[Max@ IntegerDigits[n, #] <= 8 &, Range[2, 17]] > 0]] (* Michael De Vlieger, Aug 15 2016 *)