login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A100842
Primes of the form k^k + 10.
1
11, 37, 823553, 387420499, 112595147462071192539789448988889059930192105219196517009951969
OFFSET
1,1
EXAMPLE
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.
MATHEMATICA
Select[Table[n^n + 10, {n, 100}], PrimeQ] (* Alonso del Arte, Aug 05 2019 *)
PROG
(PARI) f1(n) = for(x=1, n, y=x^x+10; if(ispseudoprime(y), print1(y", ")))
CROSSREFS
Cf. A100839 (corresponding k).
Sequence in context: A012820 A162929 A116059 * A057664 A279770 A071853
KEYWORD
nonn,hard
AUTHOR
Cino Hilliard, Jan 07 2005
EXTENSIONS
Corrected by T. D. Noe, Nov 15 2006
STATUS
approved