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.

A111501 Numbers n such that n^3 - n^2 + 1 is prime.

Original entry on oeis.org

2, 3, 5, 6, 8, 13, 14, 21, 24, 26, 28, 29, 33, 34, 35, 36, 40, 43, 45, 48, 49, 50, 51, 55, 58, 76, 80, 83, 89, 90, 93, 96, 99, 100, 101, 104, 110, 111, 115, 118, 120, 121, 124, 133, 135, 138, 140, 148, 149, 161, 170, 173, 181, 190, 191, 194, 195, 201, 203, 204, 205
Offset: 1

Views

Author

Pierre CAMI, Nov 16 2005

Keywords

Examples

			2^3 - 2^2 + 1 = 8 - 4 + 1 = 5, which is prime.
		

Crossrefs

Cf. A162292 (corresponding primes).

Programs

  • Mathematica
    Select[Range[210],PrimeQ[#^3-#^2+1]&] (* Harvey P. Dale, Mar 04 2012 *)
  • PARI
    isok(n) = isprime(n^3 - n^2 + 1); \\ Michel Marcus, Aug 24 2016

Extensions

More terms from Vladimir Joseph Stephan Orlovsky, Jun 30 2009