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!)
A094519 Numbers having at least one pair (x,y) of divisors with x<y such that x+y is also a divisor. 6
6, 12, 18, 20, 24, 30, 36, 40, 42, 48, 54, 56, 60, 66, 70, 72, 78, 80, 84, 90, 96, 100, 102, 108, 110, 112, 114, 120, 126, 132, 138, 140, 144, 150, 156, 160, 162, 168, 174, 180, 182, 186, 192, 198, 200, 204, 210, 216, 220, 222, 224, 228, 234, 240, 246 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
If m is in the sequence then so is k*m for k > 0. Furthermore, all terms are even. - David A. Corneth, Aug 31 2019
If (x,y) = (1,m) with m > 1, then oblong numbers m*(m+1) >= 6 belong to this sequence, and each oblong number >= 6 is a primitive term of the subsequence {k*m*(m+1), k >= 1}. Examples: with pair (1,2), we get multiples of 6 (see A008588); with (1,3) we get multiples of 12 (see A008594); with (1,4) we get multiples of 20 (see A008602); with (1,7) we get multiples of 56. - Bernard Schott, Aug 31 2019
LINKS
FORMULA
A094518(a(n)) > 0.
MATHEMATICA
aQ[n_] := AnyTrue[Total /@ Subsets[Divisors[n], {2}], Divisible[n, #] &]; Select[Range[250], aQ] (* Amiram Eldar, Aug 31 2019 *)
PROG
(PARI) is(n) = {my(d = divisors(n)); for(i = 1, #d - 2, for(j = i + 1, #d - 1, if(n % (d[i] + d[j]) == 0, return(1) ) ) ); 0 } \\ David A. Corneth, Aug 31 2019
(Python)
from itertools import count, islice
from sympy import divisors
def A094519_gen(): # generator of terms
for n in count(1):
for i in range(1, len(d:=divisors(n))):
di = d[i]
for j in range(i):
if n % (di+d[j]) == 0:
yield n
break
else:
continue
break
A094519_list = list(islice(A094519_gen(), 20)) # Chai Wah Wu, Dec 26 2021
CROSSREFS
Cf. A094518.
Complement of A094520.
A superset of A088723. - R. J. Mathar, Sep 16 2007
Subsequences: A002378 \ {0, 2}, A008588 \ {0}, A008602 \ {0}.
Sequence in context: A352030 A324652 A205525 * A088723 A228870 A291022
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, May 06 2004
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 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)