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

 

Logo

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 60th year, we have over 367,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Other ways to Give
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A120356 Even refactorable numbers n such that the number r of odd divisors and the number s of even divisors are both even divisors of n and n is the first number for which the triple (r,s,t) occurs, where t is the number of divisors of n. 1
12, 24, 80, 180, 240, 360, 480, 720, 896, 1344, 1440, 1620, 2688, 3240, 3360, 4032, 5040, 6720, 6912, 8064, 10080, 13440, 20160, 20412, 24300, 25200, 30000, 30240, 34560, 40320, 40824, 48600, 56320, 56700, 60000, 60480, 62208, 67584, 69120 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Note that s is necessarily a multiple of r.
LINKS
EXAMPLE
a(1)=12 since r=2, s=4 and r+s=6.
MATHEMATICA
triples = {}; seq = {}; Do[t = DivisorSigma[0, n]; r = DivisorSigma[0, 2 n] - t; s = t - r; tri = {r, s, t}; If[AllTrue[tri, EvenQ[#] && Divisible[n, #] &] && !MemberQ[triples, tri], AppendTo[seq, n]; AppendTo[triples, tri]], {n, 2, 69120, 2}]; seq (* Amiram Eldar, Jun 13 2020 *)
CROSSREFS
Sequence in context: A216425 A081751 A120360 * A109745 A364726 A226493
KEYWORD
nonn
AUTHOR
Walter Kehowski, Jun 25 2006
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 December 7 12:41 EST 2023. Contains 367656 sequences. (Running on oeis4.)