m o d 10 \bmod\,10 Prime Sum Puzzle

Let 10 ( k 1 ) < α prime < 10 k α α m o d 10 \sum\limits_{10(k - 1) < \alpha \text{ prime} < 10k} \alpha^{\alpha} \quad \bmod\,10 denote a sum of prime powers, where k N k \in \mathbb{N} . Consider the following diagram of the first few values:

Start Substitution Result
k = 0 k = 0 2 2 + 3 3 + 5 5 + 7 7 2^2 + 3^3 + 5^5 + 7^7 9 9
k = 1 k = 1 1 1 11 + 1 3 13 + 1 7 17 + 1 9 19 11^{11} + 13^{13} + 17^{17} + 19^{19} 0 0
k = 2 k = 2 2 3 23 + 2 9 29 23^{23} + 29^{29} 6 6
k = 3 k = 3 3 1 31 + 3 7 37 31^{31} + 37^{37} 8 8
k = 4 k = 4 4 1 41 + 4 3 43 + 4 7 47 41^{41} + 43^{43} + 47^{47} 1 1
k = 5 k = 5 5 3 53 + 5 9 59 53^{53} + 59^{59} 2 2

If we keep listing more values, can we find some integers k k , such that α α 5 m o d 10 \sum \alpha^{\alpha} \equiv 5 \bmod 10 ?

Note: N \mathbb{N} denotes the set of all positive natural numbers .

No, it is not possible.. Yes, it is possible.

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.

1 solution

Chris Lewis
Oct 31, 2019

Wow, interesting problem! I only managed by a bit of casework - I'd be interested to know if there is a better solution.

The primes here are a bit of a distraction. The thing to focus on is that we're working ( m o d 10 ) \pmod{10} , which means two important things when we're looking at powers a b a^b :

  • only the last digit of a a is important; and this can only be one of { 1 , 3 , 7 , 9 } \{1,3,7,9\}
  • only the residue of b ( m o d 4 ) b \pmod{4} is important, since φ ( 10 ) = 4 \varphi(10)=4 and by Euler's theorem, a 4 1 a^4 \equiv 1 for all a a in the above set

All odd primes are congruent to either ± 1 ( m o d 4 ) \pm 1 \pmod{4} ; this depends on the last two digits of p p .

This drastically reduces the number of cases to check. Each decade of numbers can contain primes ending in some, none or all of the digits { 1 , 3 , 7 , 9 } \{1,3,7,9\} . Depending on the parity of k k , either those ending with 1 1 and 9 9 will be congruent to 1 ( m o d 4 ) 1 \pmod{4} and those ending with 3 3 and 7 7 will be congruent to 1 ( m o d 4 ) -1 \pmod{4} , or vice-versa. This leaves a total of 2 4 1 = 15 2^4-1=15 choices of the possible prime endings in the decade, and 2 2 choices for the parity of k k , for a total of 30 30 cases.

It's easy to check these cases by computer; we find that all results except 5 5 are possible.

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...