A153089 Continue with summing & priming the A013918 list.
2, 7, 117241, 1351781, 3703429, 243729623, 486707171, 568561471, 766634423, 883314979, 1058403331, 1520509423, 1933700891, 1997566367, 2063533819, 2632011079, 3040681037, 3591772153, 4114380107, 7870826569, 8414671219
Offset: 1
Keywords
Links
- M. J. Crowe, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
lst2={}; s2=0; Do[s2=s2+Prime[n]; If[PrimeQ[s2], AppendTo[lst2, s2]], {n, 4700}]; lst3={}; s3=0; Do[s3=s3+lst2[[n]];If[PrimeQ[s3], AppendTo[lst3, s3]], {n,1,Length[lst2]}]; lst3
Comments