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.

A337535 For n>1, a(n) is the least base b>2 such that the digits of n in base b contain the digit b-1; a(1)=1.

Original entry on oeis.org

1, 3, 4, 5, 3, 3, 3, 3, 5, 11, 3, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 3, 4, 4, 3, 3, 3, 3, 37, 19, 3, 4, 41, 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, 3, 3, 3, 3, 3, 3, 3, 3, 3, 41, 83, 3, 5, 43
Offset: 1

Views

Author

Michel Marcus, Aug 31 2020

Keywords

Comments

The choice b>2 in the name of this sequence comes from the fact that base 2 has the desired property for all n>1.

Examples

			a(4) = 5 since 4 = 4_5, and 5 is the only base b > 2 with digit b-1.
a(7) = 3 since 7 = 21_3 so containing the digit 2.
		

Crossrefs

Programs

  • PARI
    isok(n, b) = vecmax(digits(n, b)) == b-1;
    a(n) = if (n==1, return (1)); my(b=3); while(!isok(n, b), b++); b;