A133532 Sum of fifth powers of three consecutive primes.
3400, 20175, 180983, 549151, 1952201, 4267249, 10332299, 29423591, 55576643, 118484257, 213829309, 332208601, 492209651, 794548943, 1362464799, 1977716093, 2909645707, 3998950759, 5227426051, 6954357343, 9089168635
Offset: 1
Keywords
Examples
a(1)=3400 because 2^5+3^5+5^5=3400.
Crossrefs
Programs
-
Mathematica
a = 5; Table[Prime[n]^a + Prime[n + 1]^a + Prime[n + 2]^a, {n, 1, 100}] Total[#^5]&/@Partition[Prime[Range[30]],3,1] (* Harvey P. Dale, May 26 2011 *)
Comments