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.

A191020 Primes p with Kronecker symbol (p|2*11) = 1.

Original entry on oeis.org

13, 19, 23, 29, 31, 43, 47, 61, 71, 83, 89, 97, 101, 103, 107, 109, 113, 131, 137, 139, 149, 173, 191, 197, 199, 211, 223, 227, 257, 277, 283, 293, 307, 311, 313, 347, 349, 353, 367, 373, 383, 401, 433, 449, 461, 463, 487, 491, 521, 523, 541, 547, 557, 563
Offset: 1

Views

Author

T. D. Noe, May 24 2011

Keywords

Comments

Originally incorrectly named "primes which are squares (mod 22)", which is sequence A056874. - M. F. Hasler, Jan 15 2016

Crossrefs

Programs

  • Magma
    [p: p in PrimesUpTo(563) | KroneckerSymbol(p, 22) eq 1]; // Vincenzo Librandi, Sep 11 2012
    
  • Mathematica
    Select[Prime[Range[200]], JacobiSymbol[#,22]==1&]
  • PARI
    lista(nn) = forprime(p=13, nn, if(kronecker(p, 22)==1, print1(p, ", "))) \\ Iain Fox, Mar 05 2018

Extensions

Definition corrected (following an observation by David Broadhurst) by M. F. Hasler, Jan 15 2016