A123096 Prime arithmetic mean of ten consecutive primes.
727, 761, 1663, 1783, 1811, 1913, 2693, 2969, 3229, 3433, 4073, 4091, 4421, 4547, 4673, 4903, 5099, 5801, 5927, 6359, 7537, 7727, 7927, 8093, 8111, 8293, 9041, 9829, 11177, 11239, 11447, 12671, 14771, 14779, 14929, 15131, 16421, 16477, 16619
Offset: 1
Keywords
Examples
(prime(125)+...+prime(134))/10 = 727, where prime(n) is the n-th prime.
Links
- Zak Seidov, Table of n, a(n) for n = 1..1000
Programs
-
Mathematica
Select[Mean/@Partition[Prime[Range[2000]],10,1],PrimeQ] (* Harvey P. Dale, Jul 19 2011 *)
Comments