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.

A038361 Partial sums of primes congruent to 5 mod 6.

Original entry on oeis.org

5, 16, 33, 56, 85, 126, 173, 226, 285, 356, 439, 528, 629, 736, 849, 980, 1117, 1266, 1433, 1606, 1785, 1976, 2173, 2400, 2633, 2872, 3123, 3380, 3643, 3912, 4193, 4486, 4797, 5114, 5461, 5814, 6173, 6556, 6945, 7346, 7765, 8196, 8639, 9088
Offset: 1

Views

Author

Den Roussel (DenRoussel(AT)webtv.net)

Keywords

Examples

			a(4) = 56 = 5+11+17+23.
		

Crossrefs

Partial sums of A007528.

Programs

  • Mathematica
    Accumulate[Select[Prime[Range[100]],Mod[#,6]==5&]] (* Harvey P. Dale, May 28 2013 *)