cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-1 of 1 results.

A120360 Even refactorable numbers k such that the number of odd divisors of k and the number of even divisors of k are both even divisors of k.

Original entry on oeis.org

12, 24, 80, 180, 240, 252, 360, 396, 468, 480, 504, 560, 612, 684, 720, 792, 828, 880, 896, 936, 972, 1040, 1044, 1116, 1200, 1224, 1332, 1344, 1360, 1368, 1440, 1476, 1520, 1548, 1620, 1656, 1692, 1840, 1908, 1944, 2000, 2088, 2124, 2196, 2232, 2320
Offset: 1

Views

Author

Walter Kehowski, Jun 25 2006

Keywords

Comments

Note that the number of even divisors s is necessarily a multiple of the number of odd divisors r.

Examples

			a(1) = 12 since r = 2, s = 4, t = r + s = 6.
		

Crossrefs

Programs

  • Mathematica
    oddtau[n_] := DivisorSigma[0, n/2^IntegerExponent[n, 2]]; seqQ[n_] := Module[{d = DivisorSigma[0, n], o = odd[n]}, EvenQ[d] && EvenQ[o] && Divisible[n, d] && Divisible[n, o] && Divisible[n, d - o]]; Select[Range[2, 2320, 2], seqQ] (* Amiram Eldar, Jan 15 2020 *)
Showing 1-1 of 1 results.