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.

A296924 Primes p such that Legendre(-6,p) = 0 or 1.

Original entry on oeis.org

2, 3, 5, 7, 11, 29, 31, 53, 59, 73, 79, 83, 97, 101, 103, 107, 127, 131, 149, 151, 173, 179, 193, 197, 199, 223, 227, 241, 251, 269, 271, 293, 313, 317, 337, 347, 367, 389, 409, 419, 433, 439, 443, 457, 461, 463, 467, 487, 491, 509, 557, 563, 577, 587, 601, 607, 631, 653, 659, 673, 677, 683
Offset: 1

Views

Author

N. J. A. Sloane, Dec 26 2017

Keywords

Comments

Primes == 1, 2, 3, 5, 7, or 11 (mod 24). - Robert Israel, Dec 27 2017

Crossrefs

Programs

  • Maple
    Load the Maple program HH given in A296920. Then run HH(-6, 200); This produces A157437, A191059, and the present sequence.
    select(isprime, {seq(seq(24*i+j,j=[1,2,3,5,7,11]),i=0..100)});