A123034 Prime sums of 5 positive 5th powers.
5, 67, 1301, 1543, 2113, 2293, 2777, 3191, 3253, 3347, 3371, 3433, 3613, 4339, 5237, 5417, 5659, 6229, 6737, 7307, 7549, 7873, 8053, 8537, 8803, 9377, 9439, 9619, 9857, 10099, 11177, 11423, 11927, 12743, 15797, 15859, 16811, 17053, 17183, 18679, 18919, 19163
Offset: 1
Examples
a(1) = 5 = 1^5 + 1^5 + 1^5 + 1^5 + 1^5. a(2) = 67 = 1^5 + 1^5 + 1^5 + 2^5 + 2^5. a(3) = 1301 = 1^5 + 1^5 + 2^5 + 3^5 + 4^5. a(4) = 1543 = 1^5 + 2^5 + 3^5 + 3^5 + 4^5. a(5) = 2113 = 1^5 + 2^5 + 2^5 + 4^5 + 4^5. a(6) = 3191 = 1^5 + 1^5 + 2^5 + 2^5 + 5^5. a(7) = 4339 = 3^5 + 4^5 + 4^5 + 4^5 + 4^5.
Links
- Giovanni Resta, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
Take[Select[Union[Total/@Tuples[Range[10]^5,5]],PrimeQ],60] (* Harvey P. Dale, Jul 21 2014 *)
Extensions
Corrected and extended by Harvey P. Dale, Jul 21 2014
Comments