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.

A070655 Numbers k such that k+1, k^2+1, k^4+1 and k^8+1 are primes.

Original entry on oeis.org

1, 2, 4, 19380, 285090, 337536, 448630, 532390, 534430, 545140, 547536, 585106, 602056, 677076, 876180, 1007386, 1030200, 1331950, 1462000, 1736346, 1878790, 1883856, 2071960, 2194666, 2240890, 2763010, 2824720, 3018606, 3114996
Offset: 1

Views

Author

Robert G. Wilson v, May 13 2002

Keywords

Crossrefs

Cf. A070325.

Programs

  • Mathematica
    Do[ If[ PrimeQ[n + 1] && PrimeQ[n^2 + 1] && PrimeQ[n^4 + 1] && PrimeQ[n^8 + 1], Print[n]], {n, 1, 10^7}]