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!)
A110232 6-almost primes p * q * r * s * t * u not relatively prime to p+q+r+s+t+u. 12
64, 144, 160, 216, 240, 324, 336, 400, 528, 540, 560, 624, 729, 756, 784, 816, 840, 880, 900, 912, 1040, 1104, 1134, 1188, 1215, 1232, 1260, 1320, 1350, 1360, 1392, 1404, 1456, 1488, 1500, 1520, 1560, 1764, 1776, 1836, 1840, 1848, 1904, 1936, 1960, 1968 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
p, q, r, s, t, u are not necessarily distinct. The converse to this is A110231: 6-almost primes p * q * r * s * t * u which are relatively prime to p+q+r+s+t+u. A046306 is the 6-almost primes.
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
EXAMPLE
160 is in this sequence because 160 = 2^5 * 5, the sum of whose prime factors is 2 + 2 + 2 + 2 + 2 + 5 = 15 = 3 * 5, which has a prime factor in common with 160.
PROG
(PARI) list(lim)=my(v=List()); forprime(p=2, lim\16, forprime(q=2, min(p, lim\8\p), my(pq=p*q); forprime(r=2, min(lim\pq\4, q), my(pqr=pq*r); forprime(s=2, min(lim\pqr\2, r), my(pqrs=pqr*s); forprime(t=2, min(lim\pqrs, s), my(pqrst=pqrs*t, n); forprime(u=2, min(lim\pqrst, t), n=pqrst*u; if(gcd(n, p+q+r+s+t+u)>1, listput(v, n)))))))); Set(v) \\ Charles R Greathouse IV, Jan 31 2017
CROSSREFS
Sequence in context: A250654 A223063 A216330 * A348548 A188244 A044315
KEYWORD
easy,nonn
AUTHOR
Jonathan Vos Post, Jul 17 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 May 9 05:21 EDT 2024. Contains 372344 sequences. (Running on oeis4.)