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.

Showing 1-1 of 1 results.

A134777 First digit of n alphabetically.

Original entry on oeis.org

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

Views

Author

Rick L. Shepherd, Nov 11 2007

Keywords

Comments

Digits are decimal with names in English (see A000052). A134777(n)=A134778(n) iff n is a repdigit (n=A010785(m)), in which case a(n)=A010888(m), the repeated digit. a(n)=0 only for n=0. a(n)=8 iff n is a member of A011538.

Examples

			a(104) = 4 because the digits of 104 are 1 (one), 0 (zero) and 4 (four) and "four" occurs before both "one" and "zero" alphabetically.
		

Crossrefs

Programs

  • Python
    def alpha(n): return [8, 5, 4, 9, 1, 7, 6, 3, 2, 0].index(n)
    def a(n): return sorted(map(int, str(n)), key=alpha)[0]
    print([a(n) for n in range(105)]) # Michael S. Branicky, Dec 12 2023
Showing 1-1 of 1 results.