OFFSET
1,1
COMMENTS
One of several sets of "good primes" in section A14 of Guy.
McNew calls these numbers "midpoint convex primes". - Peter Munn, Jul 04 2025
From Thomas Ordowski, Jun 01 2026: (Start)
Equivalently, numbers k > 1 such that 2*pi(k) > pi(k-m) + pi(k+m) for every 0 < m < k, where the pi function is A000720.
Conjecture: these are the numbers k > 1 for which 2*pi(k) = pi(k-m) + pi(k+m) has no solution 0 < m < k.
The conjecture is true if and only if for every composite number k this equation has such a solution m. (End)
REFERENCES
R. K. Guy, Unsolved Problems in Number Theory, 3rd ed. Springer, 2004.
LINKS
T. D. Noe, Table of n, a(n) for n=1..10001
Nathan McNew, Popular values of the largest prime divisor function (corrected version), page 16, November 2015.
MATHEMATICA
t={}; n=1; While[Length[t]<100, n++; p=Prime[n]; i=1; While[i<n && 2p<Prime[n-i]+Prime[n+i], i++ ]; If[i==n, AppendTo[t, p]]]; t
CROSSREFS
KEYWORD
nonn
AUTHOR
T. D. Noe, Feb 06 2007
STATUS
approved
