login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A276355
Sum of primes between 100*n and 100*n + 99.
1
1060, 3167, 4048, 5612, 7649, 7760, 10316, 10466, 12719, 13330, 16826, 13780, 18775, 14759, 24773, 18666, 24679, 21022, 22230, 25413, 28750, 21398, 33781, 35381, 24452, 28057, 39905, 38474, 34168, 32407, 36560, 31544, 35669, 50157, 38009, 49688, 47439, 44994
OFFSET
0,1
COMMENTS
The first occurrence of 0 in this sequence is as a(16718). - Robert Israel, Dec 28 2022
LINKS
FORMULA
a(n) = A034387(100*(n+1)) - A034387(100*n). - Robert Israel, Aug 31 2016
EXAMPLE
Sum of primes in first interval of one hundred numbers: 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97 is equal to first term i.e 1060.
MAPLE
R:= NULL: m:= 0: p:= 0: s:= 0:
while m <= 100 do
p:= nextprime(p);
r:= floor(p/100);
if r = m then
s:= s + p;
else
R:= R, s;
if m < r-1 then R:= R, 0$(r-1-m) fi;
s:= p;
m:= r;
fi
od:
R;
MATHEMATICA
Table[Total@ Select[Range[#, # + 99] &[100 n], PrimeQ], {n, 0, 37}] (* Michael De Vlieger, Sep 01 2016 *)
CROSSREFS
KEYWORD
nonn,look
AUTHOR
Bhushan Bade, Aug 31 2016
EXTENSIONS
Definition by Omar E. Pol, Aug 31 2016
STATUS
approved