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”).

A248872
Numbers k such that k^k + k! + 1 is prime.
0
1, 2, 4, 28, 496
OFFSET
1,2
COMMENTS
These primes are of the form: A000312(n) + A000142(n) + 1.
Note that 28 and 496 are perfect numbers (see A000396).
a(6) > 1500.
a(6) > 25000. - Michael S. Branicky, Nov 12 2024
EXAMPLE
For n = 1, 1^1 + 1! + 1 = 3, which is prime.
For n = 2, 2^2 + 2! + 1 = 4 + 2 + 1 = 7, which is prime.
For n = 4, 4^4 + 4! + 1 = 281, which is prime.
MATHEMATICA
Select[Range[1500], PrimeQ[#^# + #! + 1]&]
PROG
(PARI) for(n=1, 10^3, if(ispseudoprime(n^n+n!+1), print1(n, ", "))) \\ Derek Orr, Mar 06 2015
CROSSREFS
Cf. A000312 (n^n), A000142(n!).
Sequence in context: A062792 A102692 A292184 * A329102 A126580 A329063
KEYWORD
nonn,more,hard
AUTHOR
Waldemar Puszkarz, Mar 04 2015
STATUS
approved