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.

A037968 Greatest number of distinct digits of n in any base b>=2.

Original entry on oeis.org

1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 2, 2, 2, 3, 2, 2, 3, 3, 2, 3, 2, 2, 3, 2, 2, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 3, 3, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 3, 3, 3, 3, 3, 3
Offset: 1

Views

Author

Keywords

Comments

a(A049363(n)) = n and a(m) < n for m < A049363(n). - Reinhard Zumkeller, Oct 27 2003
From Robert G. Wilson v, Aug 29 2014: (Start)
First occurrence of k: 1, 2, 11, 75, 694, 8345, 123717, …, . A049363
Last occurrence of k: 1, 43, 2462, 140081, 20338085, …, . A246535
Count of f(j) = k: 1, 22, 340, 8888, …, . not in the OEIS data base.
(End)

Crossrefs

See A037914 for the least corresponding bases.

Programs

  • Mathematica
    f[n_] := Max@ Table[ Length@ Union@ IntegerDigits[n, b], {b, 2, n }]; f[1] = 1; Array[f, 105] (* Robert G. Wilson v, Aug 29 2014 *)
  • PARI
    a(n) = {nb = 1; for (k=2, n, nb = max (nb, #Set(digits(n, k)));); nb;} \\ Michel Marcus, Sep 13 2014