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.

A270038 a(n) = Smallest m >= 3 containing no ones when represented in any base from 3 through n.

Original entry on oeis.org

6, 8, 60, 560, 870899850, 871017138, 871017138, 65473886952, 65473886954
Offset: 3

Views

Author

Nathan Fox, Mar 09 2016

Keywords

Comments

It remains to be determined if the sequence is finite.
a(12) > 3.4*10^30, if it exists. - Giovanni Resta, Oct 14 2019

Crossrefs

Programs

  • Mathematica
    Table[SelectFirst[Range[3, 10^3], Total@ Map[Function[k, DigitCount[#, k, 1]], Range[3, n]] == 0 &], {n, 3, 7}] /. n_ /; MissingQ@ n -> Nothing (* Michael De Vlieger, Mar 10 2016, Version 10.2 *)