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

A063639
Primes of the form p*q*r - 1, where p, q and r are primes (not necessarily distinct).
5
7, 11, 17, 19, 29, 41, 43, 67, 97, 101, 109, 113, 137, 163, 173, 181, 211, 229, 241, 257, 281, 283, 317, 331, 337, 353, 373, 401, 409, 433, 523, 547, 577, 601, 617, 641, 653, 677, 691, 709, 761, 787, 821, 829, 853, 907, 937, 941, 977, 1009, 1021, 1033, 1051
OFFSET
1,1
LINKS
MATHEMATICA
Take[Select[Union[Times@@#-1&/@Tuples[Prime[Range[60]], 3]], PrimeQ], 60] (* Harvey P. Dale, Jan 23 2012 *)
PROG
(PARI) { n=0; for (m=1, 10^9, p=prime(m); if (bigomega(p + 1) == 3, write("b063639.txt", n++, " ", p); if (n==1000, break)) ) } \\ Harry J. Smith, Aug 26 2009
(Haskell)
a063639 n = a063639_list !! (n-1)
a063639_list = [p | p <- a000040_list, a001222 (p+1) == 3]
-- Reinhard Zumkeller, Feb 04 2012
CROSSREFS
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Jul 21 2001
STATUS
approved