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

A300947
Primes of form (2*k)! + k! + 1.
4
3, 727, 20922789928321, 403291461126605641811020801, 523022617466601111760007224221719391608832001
OFFSET
1,1
COMMENTS
The next term is too large to include.
FORMULA
a(n) = (2*A242487(n))! + A242487(n)! + 1.
MAPLE
select(isprime, [seq(factorial(2*k)+factorial(k)+1, k=0..600)]); # Muniru A Asiru, May 27 2018
PROG
(PARI) lista(nn) = {for(k=0, nn, if(ispseudoprime(p=(2*k)!+k!+1), print1(p, ", "))); } \\ Altug Alkan, Mar 22 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Mar 22 2018
STATUS
approved