OFFSET
1,4
COMMENTS
Conjecture: a(n) < 2n. See A073316 for a generalization for all positive even numbers less than 2n.
EXAMPLE
a(45) = 11 because 11 is the smallest number yielding two primes when added to 2 and 90. This is the first instance where this sequence differs from A060266.
MATHEMATICA
maxN=200; lst={}; For[n=1, n<=maxN, n++, k=1; While[k<2n&&!(PrimeQ[k+2]&&PrimeQ[k+2n]), k=k+2]; AppendTo[lst, k]; If[k>2n, Print["Failure at n = ", n]]]; lst
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
T. D. Noe, Aug 02 2002
STATUS
approved