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.

A176825 Primes of the form (k+1)^k mod k^k.

Original entry on oeis.org

113, 24337, 9492289
Offset: 1

Views

Author

Keywords

Comments

The next term is too large to include.
The corresponding values of k are 4, 6, 8, 132, ... - Amiram Eldar, Jul 18 2019

Examples

			5^4 mod 4^4 = 113 is a prime.
		

Crossrefs

Programs

  • Mathematica
    Select[Table[Mod[(n+1)^n,n^n],{n,140}],PrimeQ[ # ]&]