cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A077131 Sum of odd-indexed primes.

Original entry on oeis.org

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
Offset: 1

Views

Author

Jon Perry, Nov 29 2002

Keywords

Comments

Partial sums of A031368. - Michel Marcus, Oct 27 2015

Examples

			p_1=2, p_2=3 and p_3=5, therefore a(2) = p_1 + p_3 = 2 + 5 = 7.
		

Crossrefs

Programs

  • Mathematica
    A077131list[nmax_]:=Accumulate[Prime[Range[1,2nmax,2]]];A077131list[100] (* Paolo Xausa, Aug 28 2023 *)
    Accumulate[Prime[Range[1,101,2]]] (* Harvey P. Dale, Nov 08 2024 *)
  • PARI
    a(n)=if(n<1,0,sum(k=1,n, prime(2*k-1)))

Formula

a(n) ~ n^2 log n. - Charles R Greathouse IV, Jan 09 2025