login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A100842 Primes of the form n^n + 10. 1
11, 37, 823553, 387420499, 112595147462071192539789448988889059930192105219196517009951969 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
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, a) = for(x=0, n, y=x^x+a; if(ispseudoprime(y), print1(y", ")))
CROSSREFS
Cf. A100839 (values of n).
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

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 17 22:23 EDT 2024. Contains 371767 sequences. (Running on oeis4.)