A052290 Prime values of n!*2^n+n+1 = A000165(n)+n+1.
2, 11, 389, 1961990553613, 1678343852714360832019, 25563186766285862273530264901662157745369907200000037
Offset: 1
Keywords
Examples
If n=4, 2^4*4!+4+1 = 389 is prime, so 389 is a term.
Programs
-
Mathematica
Select[Table[n! 2^n+n+1,{n,0,1000}],PrimeQ] (* Harvey P. Dale, Aug 06 2012 *)
Comments