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

A139446
Numbers n such that primorial(n)/2 - 32 is prime.
5
4, 5, 6, 8, 10, 12, 23, 38, 50, 65, 67, 95, 100, 108, 114, 281, 835, 894, 1103, 3442, 6629
OFFSET
1,1
COMMENTS
a(22) > 25,000. - Robert Price, Jan 02 2017
MATHEMATICA
k = 1; a = {}; Do[k = k*Prime[n]; If[PrimeQ[k - 32] && k>32, Print[n]; AppendTo[a, n]], {n, 2, 325}]; a
CROSSREFS
KEYWORD
nonn
AUTHOR
Artur Jasinski, Apr 21 2008
EXTENSIONS
Drop 2,3 and correct program, a(17)-a(19) from Ray Chandler, Jun 16 2013
a(20)-a(21) from Robert Price, Jan 02 2017
STATUS
approved