The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A308945 Number of totient numbers, phi(k), k <= 10^n, whose initial digit is 1. 0
2, 20, 213, 2152, 21594, 216009, 2159776, 21595522, 215951111, 2159507603, 21595061256, 215950604593 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The probability that a totient number starts with an initial 1 does not obey Benford's law however it does appear to tend to a constant value. In a sample of 10^9 totient numbers the distribution of initial digits 1 - 9 is approx. 21.595%, 20.774%, 16.457%, 12.682%, 7.904%, 6.633%, 5.505%, 4.634%, 3.816%.
LINKS
Wikipedia, Benford's law
EXAMPLE
a(1)=2 as the first 10 totient numbers are {1, 1, 2, 2, 4, 2, 6, 4, 6, 4} and the occurrence of numbers with an initial 1 is 2.
MATHEMATICA
lst1={}; Do[lst=Table[0, {n, 1, 9}]; Do[++lst[[First@IntegerDigits@EulerPhi[n]]], {n, 1, 10^m}]; AppendTo[lst1, lst[[1]]], {m, 1, 7}]; lst1
PROG
(PARI) a(n) = {k=0; for(j=1, 10^n, if(digits(eulerphi(j))[1]==1, k++)); k} \\ Jinyuan Wang, Jul 04 2019
CROSSREFS
Sequence in context: A067636 A226301 A000906 * A356853 A199761 A214769
KEYWORD
nonn,base,more
AUTHOR
Frank M Jackson, Jul 02 2019
EXTENSIONS
a(10)-a(12) from Giovanni Resta, Jul 04 2019
STATUS
approved

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 June 12 17:41 EDT 2024. Contains 373358 sequences. (Running on oeis4.)