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.

A154933 Numbers k such that k^6 - 2 is prime.

Original entry on oeis.org

3, 11, 17, 35, 37, 47, 49, 59, 67, 77, 99, 123, 127, 133, 139, 155, 161, 169, 173, 187, 195, 213, 225, 231, 237, 241, 245, 247, 253, 275, 279, 297, 319, 325, 367, 373, 381, 383, 385, 399, 411, 425, 431, 469, 507, 511, 523, 541, 545, 553, 569, 585, 589, 609
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Mathematica
    lst={};Do[p=n^6-2;If[PrimeQ[p],AppendTo[lst,n]],{n,1,7!}];lst
  • PARI
    isA154933(n) = isprime(n^6-2) \\ Michael B. Porter, Oct 06 2009

Extensions

a(1) = 0 removed by Amiram Eldar, Apr 04 2020