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.

A176871 Prime numbers p such that p-q^3 is a prime number, (q is a prime number, q^3=LargestCube, LargestCube <= p).

Original entry on oeis.org

11, 13, 19, 29, 127, 24391, 357913, 571789
Offset: 1

Views

Author

Keywords

Comments

3-1^3=2, 11-2^3=3, 13-2^3=5, 19-2^3=11, 29-3^3=2, 127-5^3=2,..

Crossrefs

Programs

  • Mathematica
    lst={};Do[q=Floor[n^(1/3)];p=n-q^3;If[PrimeQ[p]&&PrimeQ[n]&&PrimeQ[q],AppendTo[lst,n]],{n,2*9!}];lst