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.

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

Original entry on oeis.org

151, 467, 3527, 7109, 183329, 432359, 2123027, 2317769, 4296473, 8988209, 14156927, 20483497, 27649439, 43441973, 62519309, 95699141, 127051973, 148178519, 161245727, 201100409, 242622269, 301396087, 322007743, 432003599
Offset: 1

Views

Author

Keywords

Comments

5^3+3^3-1=151,...

Crossrefs

Programs

  • Mathematica
    Select[Table[Prime[n+1]^3+Prime[n]^3-1,{n,7!}],PrimeQ[ # ]&]
    Select[Total[#]-1&/@Partition[Prime[Range[150]]^3,2,1],PrimeQ] (* Harvey P. Dale, Nov 06 2019 *)