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.

A270041 a(n) = Smallest m >= 11 containing no fives when represented in any base from 6 through n.

Original entry on oeis.org

12, 13, 14, 15, 16, 18, 18, 20, 20, 22, 22, 24, 24, 28, 28, 28, 28, 144, 144, 160, 160, 162, 216, 216, 216, 216, 216, 216, 216, 216, 216, 223, 228, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 487, 487
Offset: 6

Views

Author

Nathan Fox, Mar 09 2016

Keywords

Comments

It remains to be determined if the sequence is finite.

Crossrefs

Programs

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