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.

A038884 Primes p such that 13 is not a square mod p.

Original entry on oeis.org

2, 5, 7, 11, 19, 31, 37, 41, 47, 59, 67, 71, 73, 83, 89, 97, 109, 137, 149, 151, 163, 167, 193, 197, 223, 227, 229, 239, 241, 271, 281, 293, 307, 317, 331, 349, 353, 359, 379, 383, 397, 401, 409, 421, 431, 449, 457
Offset: 1

Views

Author

Keywords

Comments

Inert rational primes in the field Q(sqrt(13)). - N. J. A. Sloane, Dec 26 2017
Primes that are 5, 7, 11, 15, 19, 21 mod 26. - Charles R Greathouse IV, Mar 18 2018

Programs

  • Mathematica
    Select[Prime@Range[120], JacobiSymbol[13, #] == -1 &] (* Vincenzo Librandi, Sep 08 2012 *)
  • PARI
    list(lim)=my(v=List()); forprime(p=2,lim, if(kronecker(13,p)<0, listput(v,p))); Vec(v) \\ Charles R Greathouse IV, Mar 18 2018

Formula

a(n) ~ 2n log n. - Charles R Greathouse IV, Mar 18 2018

Extensions

Offset changed from 0 to 1 by Vincenzo Librandi, Sep 08 2012