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!)
A120358 Even refactorable numbers k such that the number r of odd divisors and the number s of even divisors are both odd divisors of k and k is the first number for which the triple (r,s,t) occurs, where t is the number of divisors of k. 2
2, 18, 72, 450, 1250, 4050, 16200, 52488, 56448, 64800, 71442, 101250, 198450, 235298, 285768, 328050, 405000, 793800, 1036800, 1312200, 1620000, 1786050, 3175200, 4572288, 4961250, 5248800, 7144200, 12700800, 14289858, 15059072, 16074450, 19845000, 24012450, 25920000, 28576800 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Note that s is necessarily a multiple of r.
LINKS
EXAMPLE
a(2) = 18 since r = 3, s = 3 and t = r+s = 6.
MATHEMATICA
seq[kmax_] := Module[{triples = {}, v = {}, r, s, t}, Do[t = DivisorSigma[0, k]; r = t - DivisorSigma[0, k/2]; s = t - r; If[OddQ[r] && OddQ[s] && FreeQ[triples, {r, s, t}] && Divisible[k, t] && Divisible[k, r] && Divisible[k, s], AppendTo[v, k]; AppendTo[triples, {r, s, t}]], {k, 2, kmax, 2}]; v]; seq[10^6] (* Amiram Eldar, Aug 01 2024 *)
CROSSREFS
Sequence in context: A163102 A073976 A120361 * A152887 A098817 A197093
KEYWORD
nonn,changed
AUTHOR
Walter Kehowski, Jun 25 2006
EXTENSIONS
a(27)-a(35) from Amiram Eldar, Aug 01 2024
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 August 16 17:14 EDT 2024. Contains 375177 sequences. (Running on oeis4.)