Mini-challenge: First Prime of form 403333...
|
11-14-2016, 09:02 AM
Post: #13
|
|||
|
|||
RE: Mini-challenge: First Prime of form 403333...
Hi Valentin,
Thanks for the detailed analysis! One could further reduce the number of candidates by using the fact that every second number of the sequence 403333... (those with an even number of digits) has algebraic factors: Code: 4033 = 109 * 37 It becomes more clear if we multiply the above equations by 3: Code: 4033 * 3 = 109 * 111 = 109 * (3*37) The numbers at the left are of the type 121*10^n-1. Since 121=11^2, numbers with even exponent will split into two factors: 121*10^(2n)-1 = (11*10^n-1)*(11*10^n+1). Thus, in general, one can skip the even exponents; in your case the odd indices. Together with the "mod 6" congruences this reduces to testing only the case index = 4 mod 6. |
|||
« Next Oldest | Next Newest »
|
User(s) browsing this thread: 1 Guest(s)