AIME 2014 II · 第 15 题
AIME 2014 II — Problem 15
题目详情
Problem
For any integer , let be the smallest prime which does not divide Define the integer function to be the product of all primes less than if , and if Let be the sequence defined by , and for Find the smallest positive integer such that
Remark
This problem is basically the same as IMO Shortlist 1995 Sequences Problem 3. As a matter of fact, having solved the IMO SL problem immediately allowed me to solve this problem. ~eevee9406
解析
Solution
Note that for any , for any prime , . This provides motivation to translate into a binary sequence .
Let the prime factorization of be written as , where is the th prime number. Then, for every in the prime factorization of , place a in the th digit of . This will result in the conversion .
Multiplication for the sequence will translate to addition for the sequence . Thus, we see that translates into . Since , and , corresponds to , which is in binary. Since , = .
Solution 2 DO NOT DO (Painful Bash)
We go through the terms and look for a pattern. We find that
Commit to the bash. Eventually, you will receive that , so is the answer. Trust me, this is worth the 10 (20*) index points.
NOTE: this only works for this problem because the answer is a low number like 149, and the numbers are small. DO NOT try this in a real problem unless it is your last one, as this is very risky. ~eqb5000
Solution 3 (induction)
Let denote the th prime. Lemma: for all
We can prove this using induction. Assume that Then, using the given recursion , we would “start fresh” for It is then easy to see that then just cycles through the previous terms of since the recursion process is the same and being a factor of is not affected until when given our assumption and is now the least such that
in which where is the only way that the aforementioned cycle would be affected. Specifically, by cancellation according to our recursion, and the values of just starts cycling through the previous terms again until when a new prime shows up in the prime factorization of when it starts cycling again, and so on. Using our base cases of and our induction is complete. Now, it is easy to see that and by Lemma #1, the least positive integer such that is By repeatedly applying our obtained recursion from Lemma #1, it is easy to see that our answer is just or
-fidgetboss_4000
Video Solution
https://youtu.be/SXZ01azDCGE?si=_lIcna68SgCcG3av
~MathProblemSolvingSkills.com