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.

A100842 Primes of the form k^k + 10.

Original entry on oeis.org

11, 37, 823553, 387420499, 112595147462071192539789448988889059930192105219196517009951969
Offset: 1

Views

Author

Cino Hilliard, Jan 07 2005

Keywords

Examples

			1^1 + 10 = 11, which is prime, so 11 is in the sequence.
3^3 + 10 = 27 + 10 = 37, which is also prime, so 37 is also in the sequence.
5^5 + 10 = 3125 + 10 = 3135 = 3 * 5 * 11 * 19, so 3135 is not in the sequence.
		

Crossrefs

Cf. A100839 (corresponding k).

Programs

  • Mathematica
    Select[Table[n^n + 10, {n, 100}], PrimeQ] (* Alonso del Arte, Aug 05 2019 *)
  • PARI
    f1(n) = for(x=1,n,y=x^x+10;if(ispseudoprime(y),print1(y", ")))

Extensions

Corrected by T. D. Noe, Nov 15 2006