OFFSET
1,1
COMMENTS
a(74) = 63274 is probably the last term. Oliveira e Silva's work shows there are no more terms below 4*10^18. The largest p below that is p = 9781 for 2k = 3325581707333960528, where sqrt(2k) = 1823617752. - Jens Kruse Andersen, Jul 03 2014
The sequence definition is equivalent to: "Even integers k such that there exists a prime p with p = min{q: q prime and (k-q) prime} and k <= p^2" and therefore this is a member of the EGN-family (Cf. A307782). - Corinna Regina Böger, May 01 2019
LINKS
Jens Kruse Andersen, Table of n, a(n) for n = 1..74
Tomás Oliveira e Silva, Goldbach conjecture verification
EXAMPLE
The smallest prime for 38 is 7, and 7 >= sqrt(38).
PROG
(PARI) for(n=1, 50000, forprime(p=2, n, if(isprime(2*n-p), if(p>=sqrt(2*n), print1(2*n", ")); break))) \\ Jens Kruse Andersen, Jul 03 2014
(Haskell)
a244408 n = a244408_list !! (n-1)
a244408_list = map (* 2) $ filter f [2..] where
f x = sqrt (fromIntegral $ 2 * x) <= fromIntegral (a020481 x)
-- Reinhard Zumkeller, Jul 07 2014
CROSSREFS
KEYWORD
nonn
AUTHOR
Jon Perry, Jun 27 2014
STATUS
approved