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!)
A077131 Sum of odd-indexed primes. 7
2, 7, 18, 35, 58, 89, 130, 177, 236, 303, 376, 459, 556, 659, 768, 895, 1032, 1181, 1338, 1505, 1684, 1875, 2072, 2283, 2510, 2743, 2984, 3241, 3510, 3787, 4070, 4377, 4690, 5021, 5368, 5721, 6088, 6467, 6856, 7257, 7676, 8107, 8546, 8995, 9456, 9923, 10410 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Partial sums of A031368. - Michel Marcus, Oct 27 2015
LINKS
EXAMPLE
p_1=2, p_2=3 and p_3=5, therefore a(2) = p_1 + p_3 = 2 + 5 = 7.
MATHEMATICA
A077131list[nmax_]:=Accumulate[Prime[Range[1, 2nmax, 2]]]; A077131list[100] (* Paolo Xausa, Aug 28 2023 *)
PROG
(PARI) a(n)=if(n<1, 0, sum(k=1, n, prime(2*k-1)))
CROSSREFS
Sequence in context: A307684 A141631 A172188 * A342397 A212685 A176854
KEYWORD
nonn
AUTHOR
Jon Perry, Nov 29 2002
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 August 16 23:13 EDT 2024. Contains 375191 sequences. (Running on oeis4.)