OFFSET
1,3
COMMENTS
Arises in studying the Goldbach conjecture.
REFERENCES
P. A. MacMahon, Properties of prime numbers deduced from the calculus of symmetric functions, Proc. London Math. Soc., 23 (1923), 290-316. [Coll. Papers, Vol. II, pp. 354-382] [The sequence f_n]
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 = 1..1000
P. A. MacMahon, Properties of prime numbers deduced from the calculus of symmetric functions, Proc. London Math. Soc., 23 (1923), 290-316. = Coll. Papers, II, pp. 354-380.
PROG
(Haskell)
import Data.List (genericIndex)
a002123 n = genericIndex a002123_list (n - 1)
a002123_list = 0 : 0 : f 3 where
f x = y : f (x + 1) where
y = a061397 x -
sum (map (a002123 . (x -)) $ takeWhile (< x) a065091_list)
-- Reinhard Zumkeller, Mar 21 2014
CROSSREFS
KEYWORD
sign
AUTHOR
EXTENSIONS
Extended with signs by T. D. Noe, Dec 05 2006
STATUS
approved