OFFSET
1,1
COMMENTS
Increasing subsequence of A020481.
For n > 2, a(n) ~ (log(A025018(n)))^e/e, while an upper bound could be written as UB(a(n)) = floor(log(A025018(n)))^e/2 (therefore, for any even v such that 12 <= v <= A025018(67) UB is true). It looks that both approximation and UB are true for any n > 2. Assuming the second equation to be true, UB(10^80) = 718967, UB(10^500) = 104745517, etc. - Sergey Pavlov, Jan 17 2021
LINKS
N. J. A. Sloane, Table of n, a(n) for n=1..67 (from the web page of Tomás Oliveira e Silva)
Mark A. Herkommer, Goldbach Conjecture Research
Tomás Oliveira e Silva, Goldbach conjecture verification
Jörg Richstein, Verifying the Goldbach conjecture up to 4 * 10^14, Math. Comp., 70 (2001), 1745-1749.
EXAMPLE
MATHEMATICA
p = 1; q = {}; Do[ k = 2; While[ !PrimeQ[k] || !PrimeQ[2n - k], k++ ]; If[k > p, p = k; q = Append[q, p]], {n, 2, 10^8}]; q
CROSSREFS
KEYWORD
nonn
AUTHOR
David W. Wilson, Dec 11 1999
EXTENSIONS
Edited and extended by Robert G. Wilson v, Dec 13 2002
More terms and b-file added by N. J. A. Sloane, Nov 28 2007
STATUS
approved