This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A096710 #14 Dec 27 2018 20:06:01 %S A096710 98303927,580868459,784857323,857636141,909894647,951508837, %T A096710 1367470823,1480028171,1850590099,2106973159,2121382079,2409718043, %U A096710 2635873907,2704854637,3225527099,3386231579,3823510039,3824915671,3905211517,4123167667,4127991383,4386448117 %N A096710 Quadruply balanced primes: primes which are averages of their immediate neighbor primes, their second neighbor primes, their third neighbor primes and their fourth neighbor primes. %H A096710 Donovan Johnson, <a href="/A096710/b096710.txt">Table of n, a(n) for n = 1..1000</a> %e A096710 98303927 is a member because 98303927 = (98303903 + 98303951)/2 = (98303897 + 98303957)/2 = (98303873 + 98303981)/2 = (98303867 + 98303987)/2. %t A096710 a = {}; Do[p = 2Prime[n]; If[p == Prime[n - 1] + Prime[n + 1], If[ p == Prime[n - 2] + Prime[n + 2], If[p == Prime[n - 3] + Prime[n + 3], If[p == Prime[n - 4] + Prime[n + 4], Print[p/2]; AppendTo[a, p/2]]]]], {n, 6, 117039731}]; a %t A096710 Select[Partition[Prime[Range[207405000]],9,1],(#[[1]]+#[[9]])/2 == (#[[2]]+ #[[8]])/2 == (#[[3]]+#[[7]])/2==(#[[4]]+#[[6]])/2==#[[5]]&][[All,5]] (* _Harvey P. Dale_, Dec 27 2018 *) %Y A096710 Cf. A006562, A051795, A096709, A055380. %K A096710 nonn %O A096710 1,1 %A A096710 _Robert G. Wilson v_, Jun 28 2004 %E A096710 More terms from _Jud McCranie_, Sep 29 2006