OFFSET
1,1
COMMENTS
Are there entries other than a(3) for which the smaller difference exceeds 2?
LINKS
Martin Ehrenstein, Table of n, a(n) for n = 1..57
Hugo Pfoertner, Maximally asymmetric prime triples, FORTRAN program
EXAMPLE
a(3) = 113 because the ratio (113-109)/(127-113) = 2/7 = 0.28571.. is smaller than the previous minimum produced by (31-29)/(29-23) = 1/3 = 0.33333...
PROG
(PARI) a084105(limit)={my(p1=2, p2=3, r=0); forprime(p3=5, limit, my(q=max((p2-p1)/(p3-p2), (p3-p2)/(p2-p1))); if(q>r, r=q; print1(p2, ", ")); p1=p2; p2=p3)};
a084105(600000000) \\ Hugo Pfoertner, Sep 04 2020
CROSSREFS
KEYWORD
nonn
AUTHOR
Hugo Pfoertner, May 29 2003
EXTENSIONS
More terms from Don Reble, May 29 2003
a(32)-a(34) from Hugo Pfoertner, Nov 06 2019
STATUS
approved