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

A283652
Primes p such that bigomega(p+1) = 20.
1
5505023, 8847359, 13271039, 17915903, 22118399, 24379391, 27131903, 29859839, 31981567, 32440319, 34406399, 36863999, 37486591, 38273023, 42205183, 46448639, 48496639, 54001663, 57016319, 60948479, 61439999, 62128127, 62705663, 67184639
OFFSET
1,1
MATHEMATICA
p = 4128767; While[p<=57016319, If[PrimeOmega[1 + p] == 20, Print[p, ", "]]; p = NextPrime[p + 2]] (* Indranil Ghosh, Mar 13 2017, after the PARI program from the author *)
Select[Prime[Range[4*10^6]], PrimeOmega[#+1]==20&] (* Harvey P. Dale, Jul 05 2020 *)
PROG
(PARI) {p=4128767; while(p<=57016319, if(bigomega(1+p)==20, print1(p ", ")); p=nextprime(p+2))}
CROSSREFS
Sequence in context: A203549 A230793 A263197 * A206176 A205430 A208455
KEYWORD
nonn
AUTHOR
Zak Seidov, Mar 12 2017
STATUS
approved