Evaluate the following sum: n = 1 ∑ ∞ 2 n − 1 ϕ ( n )
Notation: ϕ ( ⋅ ) denotes the 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.
@ChengYlln Ong , you have to mentioned what ϕ ( ⋅ ) is. I have done that for you.
Thx! Forgot about that...
Log in to reply
Where do you get a problem like that?
Log in to reply
I saw that problem from the art of problem solving forum which this problem was from a math contest
Thank youo very mucho! Conciso and to the pointo.
The key step is understanding why the lambert series actually converges wrt the Totient function...that wikipedia article is pretty badly written imo. The real reason the sum converges to 2 is because the exponential part totally overpowers the increase in the totient function.
Here's some python code that demonstrates it:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
|
@Chew-Seong Cheong sir , I'm fascinated by your knowledge and really interested in knowing how do you get to know these amazing things in Number Theory.
For a derivation from first principles: n = 1 ∑ ∞ 2 n − 1 ϕ ( n ) = n = 1 ∑ ∞ 1 − ( 1 / 2 ) n ϕ ( n ) ( 1 / 2 ) n = n = 1 ∑ ∞ ϕ ( n ) k = 1 ∑ ∞ ( 1 / 2 ) n k = n , k ≥ 1 ∑ ϕ ( n ) ( 1 / 2 ) n k = a = 1 ∑ ∞ ⎝ ⎛ n ∣ a ∑ ϕ ( n ) ⎠ ⎞ ( 1 / 2 ) a = a = 1 ∑ ∞ a ( 1 / 2 ) a , and this sum is well-known to be ( 1 − 1 / 2 ) 2 1 / 2 = 2 .
Problem Loading...
Note Loading...
Set Loading...
n = 1 ∑ ∞ 2 n − 1 ϕ ( n ) = n = 1 ∑ ∞ 1 − ( 2 1 ) n ϕ ( n ) ( 2 1 ) n = ( 1 − 2 1 ) 2 2 1 = 2 By Lambert series
Reference: Lambert series n = 1 ∑ ∞ 1 − q n ϕ ( n ) q n = ( 1 − q ) 2 q which converges when ∣ q ∣ < 1 .