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.

A154831 Numbers n such that n^4-2 is prime.

Original entry on oeis.org

3, 7, 11, 13, 21, 29, 39, 41, 43, 49, 53, 59, 73, 83, 85, 87, 95, 99, 101, 119, 129, 141, 143, 175, 181, 185, 189, 207, 217, 239, 241, 277, 279, 293, 311, 315, 323, 339, 343, 363, 367, 371, 375, 381, 389, 409, 421, 433, 435, 451, 473, 483, 497, 503, 507, 515
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Magma
    [n: n in [1..500] | IsPrime(n^4-2)]; // Vincenzo Librandi, Nov 26 2010
    
  • Mathematica
    lst={};Do[p=n^4-2;If[PrimeQ[p],AppendTo[lst,n]],{n,0,7!}];lst
    Select[Range[600],PrimeQ[#^4-2]&] (* Harvey P. Dale, May 20 2012 *)
  • PARI
    is(n)=isprime(n^4-2) \\ Charles R Greathouse IV, Jul 02 2013