|
Search: id:A079152
|
|
|
| A079152 |
|
Primes p such that either p-1 or p+1 has at most 3 prime factors, counted with multiplicity; i.e. primes p such that either bigomega(p-1) <= 3 or bigomega(p+1) <= 3, where bigomega(n) = A001222(n). |
|
+0 5
|
|
| 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 97, 101, 103, 107, 109, 113, 131, 137, 139, 149, 157, 163, 167, 173, 179, 181, 191, 193, 211, 223, 227, 229, 239, 241, 257, 263, 269, 277, 281, 283, 293, 311, 313, 317, 331
(list; graph; listen)
|
|
|
OFFSET
|
1,1
|
|
|
COMMENT
|
Up to 83, this is the sequence of prime numbers A000040. 89 is not in the sequence because both 89-1 = 88 = 2*2*2*11 and 89+1 = 90 = 2*3*3*5 have 4 prime factors.
|
|
EXAMPLE
|
97 is in the sequence because 97+1 = 98 = 2*7*7 has 3 prime factors.
|
|
PROGRAM
|
(PARI) s(n) = {sr=0; ct=0; forprime(x=2, n, if(bigomega(x-1) < 4 || bigomega(x+1) < 4, print1(x" "); sr+=1.0/x; ct+=1; ); ); print(); print(ct" "sr); } \\ Lists primes p<=n such that either p-1 or p+1 has at most 3 prime factors.
|
|
CROSSREFS
|
Union of A079150 and A079151. Cf. A079149, A079153.
Sequence in context: A069683 A069684 A061022 this_sequence A124590 A049573 A038616
Adjacent sequences: A079149 A079150 A079151 this_sequence A079153 A079154 A079155
|
|
KEYWORD
|
nonn
|
|
AUTHOR
|
Cino Hilliard (hillcino368(AT)gmail.com), Dec 27 2002
|
|
|
Search completed in 0.002 seconds
|