login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A134777 First digit of n alphabetically. 2

%I #8 Dec 12 2023 16:30:11

%S 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,

%T 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,

%U 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

%N First digit of n alphabetically.

%C 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.

%H Michael S. Branicky, <a href="/A134777/b134777.txt">Table of n, a(n) for n = 0..10000</a>

%e 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.

%o (Python)

%o def alpha(n): return [8, 5, 4, 9, 1, 7, 6, 3, 2, 0].index(n)

%o def a(n): return sorted(map(int, str(n)), key=alpha)[0]

%o print([a(n) for n in range(105)]) # _Michael S. Branicky_, Dec 12 2023

%Y Cf. A134778, A000052, A010785, A010888, A011538.

%K base,easy,nonn,word

%O 0,3

%A _Rick L. Shepherd_, Nov 11 2007

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified August 10 15:25 EDT 2024. Contains 375056 sequences. (Running on oeis4.)