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.

A176136 Primes p of the form prime(n+1)^3-prime(n)^3+1.

Original entry on oeis.org

5309, 18269, 24317, 56503, 73783, 57149, 133183, 622331, 607517, 1002583, 1815731, 1161343, 1273663, 1351423, 1145789, 2008063, 1478429, 1910429, 5142131, 5326903, 5766463, 5930623, 6393943, 4538717, 14532731, 6912989
Offset: 1

Views

Author

Keywords

Comments

23^3-19^3+1=5309,...

Crossrefs

Programs

  • Mathematica
    Select[Table[Prime[n+1]^3-Prime[n]^3+1,{n,6!}],PrimeQ[ # ]&]
    Select[#[[2]]-#[[1]]+1&/@(Partition[Prime[Range[200]],2,1]^3),PrimeQ] (* Harvey P. Dale, Aug 21 2016 *)