login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A134777
First digit of n alphabetically.
2
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,3
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.
LINKS
EXAMPLE
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.
PROG
(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
CROSSREFS
KEYWORD
base,easy,nonn,word
AUTHOR
Rick L. Shepherd, Nov 11 2007
STATUS
approved