login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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 (list; graph; refs; listen; history; text; internal format)
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
CROSSREFS
Sequence in context: A190508 A298161 A195419 * A069236 A187101 A051370
KEYWORD
easy,nonn
AUTHOR
Jonathan Vos Post, Jul 15 2005
EXTENSIONS
Extended by Ray Chandler, Jul 20 2005
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 20:33 EDT 2024. Contains 371916 sequences. (Running on oeis4.)