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

A110188
3-almost primes p * q * r not relatively prime to p+q+r.
12
8, 18, 27, 30, 42, 50, 66, 70, 78, 98, 102, 105, 110, 114, 125, 130, 138, 154, 170, 174, 182, 186, 190, 195, 222, 230, 231, 238, 242, 246, 255, 258, 266, 282, 285, 286, 290, 310, 318, 322, 338, 343, 354, 357, 366, 370, 374, 402, 406, 410, 418, 426, 429, 430
OFFSET
1,1
COMMENTS
A110187 is the converse, 3-almost primes p * q * r which are relatively prime to p+q+r.
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
EXAMPLE
a(1) = 8 because 8 = 2^3, which has a prime factor 2 in common with prime 2 + 2 + 2 = 6.
30 is in the sequence, since 30 = 2 * 3 * 5, which is in fact divisible by 2 + 3 + 5 = 10.
PROG
(PARI) list(lim)=my(v=List()); forprime(p=2, lim\4, forprime(q=2, min(p, lim\2\p), my(pq=p*q, t); forprime(r=2, min(lim\pq, q), t=r*pq; if(gcd(t, p+q+r)>1, listput(v, t))))); Set(v) \\ Charles R Greathouse IV, Jan 31 2017
KEYWORD
easy,nonn
AUTHOR
Jonathan Vos Post, Jul 15 2005
EXTENSIONS
Extended by Ray Chandler, Jul 20 2005
STATUS
approved