Compute the sum of all n ≤ 5 0 such that
1 0 ∣ ϕ ( n )
where ϕ represents Euler's totient function.
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Can you tell me what 1 0 ∣ ϕ ( n ) means..??
Case 1: ϕ ( p ) = p − 1 = 1 0 k for any prime p in the form of 10k+1 for some positive integers k
As we can see that p = 11, 31, 41 satisfy the condition.
Case 2: ϕ ( 1 1 k ) = ϕ ( 1 1 ) ϕ ( k ) = 1 0 ϕ ( k ) for some k such that g c d ( 1 1 , k ) = 1
We don't need to consider the values k because it already restricts that n ≤ 5 0 .
So n = 11, 22, 33, 44 satisfy the condition.
Case 3: Some specific numbers
ϕ ( 2 5 ) = ϕ ( 5 2 ) = 5 2 − 5 1 = 2 0
ϕ ( 5 0 ) = ϕ ( 2 × 2 5 ) = ϕ ( 2 ) ϕ ( 2 5 ) = 2 0
So the possible values are 11, 22, 33, 44, 31, 41, 25, 50
The sum = 2 5 7
Theorems about Euler's phi (totient) function for this one:
You can find some proofs for these theorems, or you can just try to prove it yourself. ^__^
Another useful theorem is: ϕ ( n m ) = n m − 1 ϕ ( n ) Using this you can "solve" for case three. Notice you need either a 5 or 10 to make this thing work, You can look at the case of 5 2 (The only number in that is with these constraints) And notice that ϕ ( 5 2 ) = 5 ϕ ( 5 ) = 2 0 Hence, 25 works, and the multiples of it work (adding 50).
Good job with you solution, btw!
Problem Loading...
Note Loading...
Set Loading...
I have only recently gained level 4 in Number Theory and I am still a learner, so I am not able to provide a rigorous mathematical solution.
For 1 0 ∣ ϕ ( n ) , either the prime factorisation of n should contain 5 and 2 or 5 and 2 should be introduced while calculating ϕ ( n ) from n . I gave more importance to 5 than 2 because it occurs less frequently than 2 in numbers from 1 to 50. I know this is not a satisfactory reason, which is why I said I do not have a rigorous solution.
Let us take the first case. In case there is only one 5 in the prime factorisation of n , it will get cancelled out when we calculate ϕ ( n ) . So there must be two 5's in the prime factorisation of n . Only 25 and 50 satisfy this condition. On calculating ϕ ( 5 0 ) and ϕ ( 2 5 ) , we do find that they are divisible by 10.
The second case will only come when the prime factorisation of n contains a prime m such that m − 1 is a multiple of 5. The only possible values of m are 11, 31 and 41. So, the possible values for n in this case are 11, 22, 31, 33, 41 and 44. Again, checking ϕ ( n ) for these values of n confirms the initial condition.
I don't have any argument to show that these are the only numbers satisfying this condition. I would appreciate it if someone would help me in this regard.
So, the answer is 1 1 + 2 2 + 2 5 + 3 1 + 3 3 + 4 1 + 4 4 + 5 0 = 2 5 7