OFFSET
1,1
COMMENTS
A prime p is in this sequence if the sum of the 100 consecutive primes just less than p, plus p, plus the sum of the 100 consecutive primes just greater than p, divided by 201 equals p.
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..350 (all terms up to the 4 millionth prime)
MATHEMATICA
Module[{bal=100, nn=300000}, Select[Partition[Prime[Range[nn]], 2bal+1, 1], Mean[#]== #[[bal+1]]&]] [[;; , 101]]
CROSSREFS
KEYWORD
nonn
AUTHOR
Harvey P. Dale, Jul 07 2023
STATUS
approved