A177007
Primes of the form n^(n-1)+n+1.
Original entry on oeis.org
3, 5, 13, 631, 5242880000000000000000021
Offset: 1
Farzad Kamanger (mymtain(AT)yahoo.com), May 11 2010
For the prime p=5242880000000000000000021 we have p=20^19+21, so p
is in the sequence. p is the only known prime of the form (q+1)^q+q+2
where q is an odd prime.
A254121
Primes of the form (n+1)^n - n.
Original entry on oeis.org
7, 61, 117643, 793714773254131, 45671926166590716193865151022383844364247891937, 403343566675122500462878634623535631588559593930513766350645748813807
Offset: 1
7 is in this sequence because (2+1)^2 - 2 = 7 and 7 is prime.
-
[a: n in [0..100] | IsPrime(a) where a is (n+1)^n - n];
-
Select[Table[(n+1)^n-n,{n,70}],PrimeQ] (* Harvey P. Dale, Apr 24 2016 *)
Showing 1-2 of 2 results.
Comments