A sequence is defined as follows a 1 = a 2 = a 3 = 1 , and, for all positive integers n , a n + 3 = a n + 2 + a n + 1 + a n . Given that a 2 8 = 6 0 9 0 3 0 7 , a 2 9 = 1 1 2 0 1 8 2 1 , and a 3 0 = 2 0 6 0 3 3 6 1 , find the remainder when k = 1 ∑ 2 8 a k is divided by 1000.
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.
@Parth Lohomi , we really liked your comment, and have converted it into a solution. If you subscribe to this solution, you will receive notifications about future comments.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
|
It returns 13346834.
1 3 3 4 6 8 3 4 ≡ 8 3 4 m o d 1 0 0 0
@Parth Lohomi Can you post the algebraic solution? Thanks!
Log in to reply
Define the sum as s. Since a n = a n + 3 − a n + 2 − a n + 1 , the sum will be:
s = a 2 8 + ∑ k = 1 2 7 ( a k + 3 − a k + 2 − a k + 1 ) s = a 2 8 + ( ∑ k = 4 3 0 a k − ∑ k = 3 2 9 a k ) − ( ∑ k = 2 2 8 a k ) s = a 2 8 + ( a 3 0 − a 3 ) − ( ∑ k = 2 2 8 a k ) = a 2 8 + a 3 0 − a 3 − ( s − a 1 ) s = − s + a 2 8 + a 3 0
Thus s = 2 a 2 8 + a 3 0 , and a 2 8 , a 3 0 are both given; the last four digits of their sum is 3 6 6 8 , and half of that is 1 8 3 4 Therefore, the answer is 8 3 4
@Calvin Lin ,check it out!
Log in to reply
Very nice. Could you post this as a separate solutions, instead of a comment? Thanks!
Problem Loading...
Note Loading...
Set Loading...
Define the sum as s. Since a n = a n + 3 − a n + 2 − a n + 1 , the sum will be:
s = a 2 8 + ∑ k = 1 2 7 ( a k + 3 − a k + 2 − a k + 1 ) s = a 2 8 + ( ∑ k = 4 3 0 a k − ∑ k = 3 2 9 a k ) − ( ∑ k = 2 2 8 a k ) s = a 2 8 + ( a 3 0 − a 3 ) − ( ∑ k = 2 2 8 a k ) = a 2 8 + a 3 0 − a 3 − ( s − a 1 ) s = − s + a 2 8 + a 3 0
Thus s = 2 a 2 8 + a 3 0 , and a 2 8 , a 3 0 are both given; the last four digits of their sum is 3 6 6 8 , and half of that is 1 8 3 4 Therefore, the answer is 8 3 4