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

A082670
Let p(n) = upper member of n-th pair of twin primes; sequence gives a(n) = p(n)!/2.
0
60, 2520, 3113510400, 60822550204416000, 4111419327088961408862781440000000, 30207631531686917818677566034256998753632256000000000
OFFSET
0,1
MATHEMATICA
#!/2&/@Select[Partition[Prime[Range[50]], 2, 1], #[[2]]-#[[1]]==2&][[All, 2]] (* Harvey P. Dale, Nov 27 2016 *)
PROG
(PARI) tpperm2(n) = { forprime(x=3, n, if(isprime(x-2), print1(x!/2" ") ) ) }
CROSSREFS
Sequence in context: A075917 A058929 A057848 * A084659 A230568 A180373
KEYWORD
easy,nonn
AUTHOR
Cino Hilliard, May 18 2003
STATUS
approved