Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
A087461
Arithmetic mean of n-th and 2n-th primes.
4
5, 9, 13, 20, 25, 30, 36, 42, 50, 55, 63, 71, 75, 80, 92, 99, 106, 115, 122, 127, 136, 141, 156, 163, 170, 177, 185, 190, 197, 210, 221, 227, 238, 249, 255, 265, 273, 282, 291, 300, 307, 317, 325, 330, 339, 351, 363, 374, 385, 395, 404, 409, 422, 429, 438, 444
OFFSET
2,1
COMMENTS
A rather sparse subset are primes: 5, 13, 71, = a(2), a(4), a(13).
LINKS
FORMULA
a(n) = (n-th prime + 2n-th prime)/2
EXAMPLE
Series begins with 2nd prime, 3 and 4th prime, 7. Then (3 + 7)/2 = 5.
MATHEMATICA
Table[Mean[{Prime[n], Prime[2n]}], {n, 2, 60}] (* Harvey P. Dale, May 25 2011 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Gary W. Adamson, Sep 07 2003
EXTENSIONS
More terms from Ray Chandler and Rick L. Shepherd, Sep 09 2003
STATUS
approved