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.

A125780 Numbers n such that n^8 + 1, n^8 + 3, n^8 + 7 and n^8 + 9 are all prime.

Original entry on oeis.org

5241160, 19083350, 24619690, 53634830, 56604020
Offset: 1

Views

Author

Artur Jasinski, Dec 11 2006

Keywords

Crossrefs

Cf. A125779.

Programs

  • Mathematica
    Do[If[(PrimeQ[x^8+1])&&(PrimeQ[x^8+3])&&(PrimeQ[x^8+7])&&(PrimeQ[x^8+9]),Print[x]],{x,1,30000000}] (*Artur Jasinski*)
    Select[Range[567*10^5],AllTrue[#^8 +{1,3,7,9},PrimeQ]&] (* Harvey P. Dale, Oct 22 2024 *)