A123033 Prime sums of 4 positive 5th powers.
97, 277, 761, 1511, 1753, 2081, 3221, 3643, 6197, 7517, 7841, 8263, 10067, 10399, 10903, 16903, 25639, 32771, 32833, 33013, 33647, 33889, 35059, 36137, 39019, 40577, 40819, 48563, 49639, 57383, 59083, 59567, 60317, 61129, 62207, 63199, 66383, 66889, 100003
Offset: 1
Examples
a(1) = 97 = 1^5 + 2^5 + 2^5 + 2^5. a(2) = 277 = 1^5 + 1^5 + 2^5 + 3^5. a(3) = 761 = 2^5 + 3^5 + 3^5 + 3^5. a(7) = 3221 = 2^5 + 2^5 + 2^5 + 5^5.
Links
- Giovanni Resta, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
up = 10^6; q = Range[up^(1/5)]^5; a = {0}; Do[b = Select[ Union@ Flatten@Table[e + a, {e, q}], # <= up &]; a = b, {k, 4}]; Select[a, PrimeQ] (* Giovanni Resta, Jun 13 2016 *)
Extensions
More terms from Alois P. Heinz, Aug 12 2015
Comments