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.

A190599 Maximal digit in base-11 expansion of n.

Original entry on oeis.org

0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 2, 2, 2, 3, 4, 5, 6, 7, 8, 9, 10, 3, 3, 3, 3, 4, 5, 6, 7, 8, 9, 10, 4, 4, 4, 4, 4, 5, 6, 7, 8, 9, 10, 5, 5, 5, 5, 5, 5, 6, 7, 8, 9, 10, 6, 6, 6, 6, 6, 6, 6, 7, 8, 9, 10, 7, 7, 7, 7, 7, 7, 7, 7, 8, 9, 10, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 10, 9, 9, 9, 9, 9
Offset: 0

Views

Author

N. J. A. Sloane, May 13 2011

Keywords

Crossrefs

Cf. A054055.

Programs

  • Maple
    [seq(max(convert(n,base,11)),n=0..120)];
  • Mathematica
    Map[Max, IntegerDigits[Range[0, 100], 11]] (* Paolo Xausa, May 03 2024 *)