A133543 Sum of seventh powers of five consecutive primes.
20391154, 83139543, 493476029, 1387269643, 4791271547, 22021660685, 49471526279, 143993064739, 337853466881, 606267252541, 1095640496695, 2242839022421, 4636558630107, 7584547192247, 13373440186463
Offset: 1
Keywords
Examples
a(1)=20391154 because 2^7+3^7+5^7+7^7+11^7=20391154
Links
- Harvey P. Dale, Table of n, a(n) for n = 1..1000
Crossrefs
Programs
-
Mathematica
a = 7; Table[Prime[n]^a + Prime[n + 1]^a + Prime[n + 2]^a + Prime[n + 3]^a + Prime[n + 4]^a, {n, 1, 100}] Total/@Partition[Prime[Range[20]]^7,5,1] (* Harvey P. Dale, Mar 05 2022 *)