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

A139448
Numbers n such that primorial(n)/2 - 64 is prime.
5
4, 5, 6, 7, 10, 13, 17, 18, 28, 32, 35, 38, 89, 115, 117, 224, 241, 353, 440, 1153, 2585, 3075, 3456, 4895, 7483, 7649, 8197, 8625, 13285, 19849, 24179, 24442
OFFSET
1,1
COMMENTS
a(33) > 25000. - Robert Price, Apr 10 2017
MATHEMATICA
k = 1; a = {}; Do[k = k*Prime[n]; If[PrimeQ[k - 64]&&k>64, Print[n]; AppendTo[a, n]], {n, 2, 325}]; a
Flatten[Position[Rest[FoldList[Times, 1, Prime[Range[600]]]], _?(PrimeQ[ #/2-64]&&#/2>64&)]] (* Harvey P. Dale, Mar 05 2013 *)
Select[Range[4, 100], PrimeQ[Product[Prime[k], {k, 1, #}]/2 - 64] &] (* Robert Price, Apr 10 2017 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Artur Jasinski, Apr 21 2008
EXTENSIONS
a(18)-a(19) from Harvey P. Dale, Mar 05 2013
Drop 2 and correct programs, a(20)-a(21) from Ray Chandler, Jun 16 2013
a(22)-a(32) from Robert Price, Apr 10 2017
STATUS
approved