login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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 (list; graph; refs; listen; history; text; internal format)
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
Sequence in context: A107556 A237797 A237795 * A294164 A335731 A048895
KEYWORD
nonn,look
AUTHOR
Bhushan Bade, Aug 31 2016
EXTENSIONS
Definition by Omar E. Pol, Aug 31 2016
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 04:14 EDT 2024. Contains 371918 sequences. (Running on oeis4.)