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.

A141526 Numbers n such that prime(n)+n^3 is prime.

Original entry on oeis.org

1, 2, 4, 6, 24, 34, 36, 66, 78, 86, 96, 100, 104, 114, 116, 120, 130, 144, 152, 156, 162, 182, 204, 228, 230, 258, 264, 276, 324, 356, 386, 394, 402, 416, 420, 428, 434, 444, 480, 520, 552, 582, 584, 606, 612, 632, 666, 678, 680, 696, 726, 728, 730, 732, 794
Offset: 1

Views

Author

Keywords

Programs

  • Mathematica
    lst={};Do[p=Prime[n];If[PrimeQ[p+n^3], AppendTo[lst, n]], {n, 10^3}];lst (* Vladimir Joseph Stephan Orlovsky, Sep 08 2008 *)
  • PARI
    j=[]; for(n=1,3000, if(isprime(prime(n)+n^3), j=concat(j, n))); j

Extensions

Offset set to 1 by Michel Marcus, Feb 04 2015