OFFSET
1,1
REFERENCES
Bach, E. and Shallit, J. Sect. 2.7 in Algorithmic Number Theory, Vol. 1: Efficient Algorithms. Cambridge, MA: MIT Press, 1996.
H. L. Nelson, "Prime Sums", J. Rec. Math., 14 (1981), 205-206.
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
Leo Moser, Notes on number theory. III. On the sum of consecutive primes, Canad. Math. Bull. 6 (1963), pp. 159-161.
Eric Weisstein's World of Mathematics, Prime Sums.
FORMULA
EXAMPLE
MATHEMATICA
s = 0; lst = {}; Do[s = s + Prime[n]; If[Mod[s, 3] == 0, AppendTo[lst, s/3]], {n, 130}]; lst (* Robert G. Wilson v *)
Select[Accumulate[Prime[Range[200]]]/3, IntegerQ] (* Harvey P. Dale, Feb 20 2018 *)
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Jonathan Vos Post, Nov 30 2005
EXTENSIONS
More terms from Robert G. Wilson v, Nov 30 2005
STATUS
approved