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.

A190595 Maximal digit in base-6 expansion of n.

Original entry on oeis.org

0, 1, 2, 3, 4, 5, 1, 1, 2, 3, 4, 5, 2, 2, 2, 3, 4, 5, 3, 3, 3, 3, 4, 5, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 1, 1, 2, 3, 4, 5, 1, 1, 2, 3, 4, 5, 2, 2, 2, 3, 4, 5, 3, 3, 3, 3, 4, 5, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 2, 2, 2, 3, 4, 5, 2, 2, 2, 3, 4, 5, 2, 2, 2, 3, 4, 5, 3, 3, 3, 3, 4, 5, 4, 4, 4, 4, 4, 5, 5, 5, 5
Offset: 0

Views

Author

N. J. A. Sloane, May 13 2011

Keywords

Crossrefs

Programs

  • Mathematica
    Map[Max, IntegerDigits[Range[0, 100], 6]] (* Paolo Xausa, May 03 2024 *)
  • PARI
    a(n) = if (n, vecmax(digits(n, 6)), 0); \\ Michel Marcus, Jul 19 2020