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.

A154935 Numbers n such that n^7-2 is prime.

Original entry on oeis.org

7, 15, 25, 87, 91, 99, 199, 211, 265, 337, 357, 361, 367, 405, 501, 511, 537, 595, 627, 685, 697, 771, 805, 841, 847, 861, 889, 931, 939, 979, 1035, 1047, 1081, 1125, 1135, 1177, 1225, 1231, 1287, 1315, 1321, 1387, 1425, 1497, 1501, 1627, 1741, 1795, 1807
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Magma
    [n: n in [1..500]|IsPrime(n^7-2)]; // Vincenzo Librandi, Nov 26 2010
    
  • Mathematica
    lst={};Do[p=n^7-2;If[PrimeQ[p],AppendTo[lst,n]],{n,0,7!}];lst
    Select[Range[2*10^3], PrimeQ[#^7 - 2] &] (* Vincenzo Librandi, Mar 20 2014 *)
  • PARI
    is(n)=isprime(n^7-2) \\ Charles R Greathouse IV, Feb 17 2017