OFFSET
1,1
COMMENTS
The sequence lists indices n for which A280008(n) / A002375(n) is less than all previous indices n > 2.
We do not consider indices n=1 and n=2, for which the sequence A002375(n) (= number of odd primes {p,q} such that 2n=p+q) is zero.
If the Goldbach conjecture is false, then this sequence is finite. It will end with n such that A280008(n) / A002375(n) = -1 since no further terms could achieve less than this value.
FORMULA
PROG
(PARI) lastx=1; record=999; for(n=4, 1000, x=0; forprime(i=3, n, if(isprime(2*n-i), x=x+1; ); ); y=(x-lastx)/lastx; if(y<record, record=y; print1(n-1, ", " ); ); lastx=x; );
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Craig J. Beisel, Jun 08 2020
STATUS
approved