A130292 Numbers that are sums of fifth powers of two distinct primes.
275, 3157, 3368, 16839, 17050, 19932, 161083, 161294, 164176, 177858, 371325, 371536, 374418, 388100, 532344, 1419889, 1420100, 1422982, 1436664, 1580908, 1791150, 2476131, 2476342, 2479224, 2492906, 2637150, 2847392, 3895956
Offset: 1
Examples
a(1) = prime(1)^5 + prime(2)^5 = 2^5 + 3^5 = 32 + 243 = 275.
Programs
-
Mathematica
Select[Sort[ Flatten[Table[Prime[n]^5 + Prime[k]^5, {n, 15}, {k, n - 1}]]], # <= Prime[15^5] &]
Comments