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.

A111318 Numbers k such that 4 divides prime(1) + ... + prime(k).

Original entry on oeis.org

5, 9, 11, 15, 17, 19, 21, 25, 27, 29, 31, 33, 35, 37, 45, 49, 71, 79, 81, 83, 85, 87, 91, 95, 97, 99, 101, 103, 105, 107, 109, 111, 115, 117, 119, 121, 125, 129, 131, 135, 155, 159, 161, 163, 165, 169, 171, 173, 175, 177, 179, 181, 183, 185, 193, 195, 199, 201, 203, 205
Offset: 1

Views

Author

N. J. A. Sloane, Nov 05 2005

Keywords

Crossrefs

Programs

  • Mathematica
    Module[{nn=300,prs},prs=Accumulate[Prime[Range[nn]]];Select[Range[ nn], Divisible[prs[[#]],4]&]] (* Harvey P. Dale, May 27 2012 *)
  • PARI
    lista(pmax) = {my(s = 0, k = 0); forprime(p = 2, pmax, k++; s += p; if(!(s % 4), print1(k, ", ")));} \\ Amiram Eldar, May 14 2024