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.

A040100 Primes p such that x^4 = 2 has no solution mod p.

Original entry on oeis.org

3, 5, 11, 13, 17, 19, 29, 37, 41, 43, 53, 59, 61, 67, 83, 97, 101, 107, 109, 131, 137, 139, 149, 157, 163, 173, 179, 181, 193, 197, 211, 227, 229, 241, 251, 269, 277, 283, 293, 307, 313, 317, 331, 347, 349, 373
Offset: 1

Views

Author

Keywords

Comments

Complement of A040098 relative to A000040. - Vincenzo Librandi, Sep 17 2012

Programs

  • Magma
    [p: p in PrimesUpTo(500) | not exists{x : x in ResidueClassRing(p) | x^4 eq 2} ]; // Vincenzo Librandi, Sep 17 2012
  • Mathematica
    ok[p_]:= Reduce[Mod[x^4 - 2, p] == 0, x, Integers] == False;Select[Prime[Range[100]], ok] (* Vincenzo Librandi, Sep 17 2012  *)