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.

A182383 Primes of the form k^k - k + 1.

Original entry on oeis.org

2, 3, 3121, 302875106592241
Offset: 1

Views

Author

Alex Ratushnyak, Apr 27 2012

Keywords

Comments

The next term has 340 digits. - T. D. Noe, Apr 27 2012
a(6) is too large to include in the b-file. - Pontus von Brömssen, Aug 11 2025

Examples

			a(2) = 5^5 - 5 + 1 = 3125 - 4 = 3121.
		

Crossrefs

Cf. A065797 (corresponding values of k, except k=0), A161471, A161472.

Programs

  • Mathematica
    Unprotect[Power]; Power[0, 0] = 1; Protect[Power]; Select[Table[n^n - n + 1, {n, 0, 100}], PrimeQ] (* T. D. Noe, Apr 27 2012 *)