OFFSET
0,2
COMMENTS
a(n) = A023036(n) for all n > 1.
REFERENCES
N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
T. D. Noe, Table of n, a(n) for n = 0..10000
Eric Wolman, Letter to N. J. A. Sloane, 1970.
MATHEMATICA
nn = 55; a = Table[0, {nn}]; n = 6; While[Times @@ a == 0, c = 0; k = 3; While[k <= n/2, If[PrimeQ[k] && PrimeQ[n - k], c++]; k++]; If[c <= nn && a[[c]] == 0, a[[c]] = n]; n = n + 2]; Prepend[a, 0]
CROSSREFS
KEYWORD
AUTHOR
N. J. A. Sloane, Eric Wolman, Dec 17 1969
EXTENSIONS
a(0) corrected by Zak Seidov, Sep 30 2011
STATUS
approved