Let p = 1 + 1 + 1 + … .
The sum
k = 2 ∑ ∞ 2 k ⌊ p k ⌉
can be expressed as b a for a , b coprime, where ⌊ ⋅ ⌉ denotes the nearest integer function. Find a + b .
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.
Nice Problem :)
I should stop writing my solutions on the fly.
Really interesting arithmetic simplification
This is an amazing question!
but... wheres the calculus?
just asking.
Hmmm. HMMM.
I wasn't really thinking when I made this question. Thanks for pointing that out.
good one !! the sum, solution and my tukka ( horrifyingly correct)
What about nearest integer function? Sounds like it has never been used in the solution.
It's a pretty well known function, I'd say. The value of ⌊ n + 2 1 ⌉ for n ∈ Z varies depending on who you ask, though ⌊ x ⌉ = ⌊ x + 2 1 ⌋ for every other x .
Sorry, Mr. Lucas and the title of the problem, I didn't actually use Lucas numbers(because I didn't know about it).
It is clear that,
p = 2 1 + 5 = φ
So, we just need to find
k = 2 ∑ ∞ 2 k ⌊ φ k ⌉
Now, we know that φ k = F k φ + F k − 1 , where F k is the k t h fibonacci term.
Hence, the numerator of the term of the sum becomes
⌊ F k φ + F k − 1 ⌉ ⇒ ⌊ F k φ ⌉ + F k − 1
Hence, this becomes
k = 2 ∑ ∞ 2 k ⌊ F k φ ⌉ + 2 k F k − 1
2nd Sum
k = 2 ∑ ∞ 2 k F k − 1 = S 1
2 S 1 = 2 F 1 + 2 2 F 2 + …
Subtracting term-wise,
S 1 = 2 F 1 + 0 + 2 3 F 1 …
S 1 = 2 1 + 2 S 1 ⇒ S 1 = 1
1st Sum
k = 2 ∑ ∞ 2 k ⌊ F k φ ⌉
Now, by Binet's formula,
F k = 5 φ k − ( φ − 5 ) k
which tells us that
F k φ = 5 φ k + 1 − φ ( φ − 5 ) k
= 5 φ k + 1 − ( φ − 5 ) k + 1 − 5 ( φ − 5 ) k
= F k + 1 − ( φ − 5 ) k
Now, ( φ − 5 ) k is a decreasing function of k with tenth digit place above 5 only for k ≤ 1 but we have k > 1 in the sum. So, in the nearest integer function, this term will be trivial.
⌊ F k φ ⌉ = F k + 1
Hence, the sum becomes
k = 2 ∑ ∞ 2 k F k + 1
which can be found in the same way as done before for sum 1, getting
k = 2 ∑ ∞ 2 k F k + 1 = 2 5
As a result,
k = 2 ∑ ∞ 2 k ⌊ φ k ⌉ = 2 5 + 1 = 2 7
Problem Loading...
Note Loading...
Set Loading...
Step 1:
First, we evaluate p . Noticing that p 2 − 1 = p , solving for p and discarding the negative solution gives
p = 2 1 + 5
which is the golden ratio ϕ .
Step 2:
Now, we use the fact that ⌊ ϕ k ⌉ = ⌊ ϕ k + 2 1 ⌋ = ⌊ ϕ k + ( − ϕ ) − k ⌋ since 2 1 > ( − ϕ ) − k when k > 1 .
It turns out that L k = ϕ k + ( − ϕ ) − k is actually the closed form for an integer sequence called the Lucas numbers { L k } k = 0 ∞ whenever k > 1 . The Lucas numbers follow the recursive rule
L n ≡ ⎩ ⎪ ⎨ ⎪ ⎧ 2 1 L n − 1 + L n − 2 if if if n = 0 ; n = 1 ; n > 1 .
Step 3:
Hence, we let the sum be S , and rewrite the sum as
S = k = 2 ∑ ∞ 2 k L k
and proceed with a bit of algebraic manipulation:
S = 4 3 + 8 4 + 1 6 7 + 3 2 1 1 + …
2 S = 2 3 + 4 4 + 8 7 + 1 6 1 1 + …
2 S − S = 2 3 + 4 1 + 8 3 + 1 6 4 + …
= 2 3 + 4 1 + 2 S
S = 2 ( 2 3 + 4 1 ) = 2 7