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.

A217129 Numbers n such that n^4 + 1 is not prime.

Original entry on oeis.org

3, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 21, 22, 23, 25, 26, 27, 29, 30, 31, 32, 33, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 49, 50, 51, 52, 53, 55, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 75, 76, 77, 78, 79, 81, 83
Offset: 1

Views

Author

Vincenzo Librandi, Sep 27 2012

Keywords

Crossrefs

Programs

  • Magma
    [n: n in [1..100] |not IsPrime(n^4+1)];
  • Mathematica
    Select[Range[100], ! PrimeQ[#^4 + 1] &]