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.

A096207 Prime partial sums of the even-indexed primes.

Original entry on oeis.org

3, 23, 71, 151, 1409, 3631, 5519, 8737, 10627, 17609, 33457, 50119, 54869, 62423, 104623, 146141, 154493, 158759, 163063, 195197, 214831, 274243, 279991, 309811, 347983, 468709, 599479, 625969, 634943, 653083, 881663, 936253, 969797, 1134421
Offset: 1

Views

Author

Alonso del Arte, Jul 27 2004

Keywords

Examples

			71 is a term because 71 = 3 + 7 + 13 + 19 + 29.
		

Crossrefs

Primes in A077126.

Programs

  • Maple
    eip:= [seq(ithprime(i),i=2..10^4,2)]:
    select(isprime,ListTools:-PartialSums(eip)); # Robert Israel, Jan 09 2025
  • Mathematica
    Select[Table[Plus @@ Prime[2Range[i]], {i, 1000}], PrimeQ[ # ] &]

Extensions

Name clarified by Robert Israel, Jan 09 2025