A299485 List of pairs (a,b) where in the n-th pair, a = number of even divisors of n and b = number of odd divisors of n.
0, 1, 1, 1, 0, 2, 2, 1, 0, 2, 2, 2, 0, 2, 3, 1, 0, 3, 2, 2, 0, 2, 4, 2, 0, 2, 2, 2, 0, 4, 4, 1, 0, 2, 3, 3, 0, 2, 4, 2, 0, 4, 2, 2, 0, 2, 6, 2, 0, 3, 2, 2, 0, 4, 4, 2, 0, 2, 4, 4, 0, 2, 5, 1, 0, 4, 2, 2, 0, 4, 6, 3, 0, 2, 2, 2, 0, 4, 6, 2, 0, 2, 4, 4, 0, 2, 4, 2, 0, 6, 2, 2, 0, 2, 8, 2, 0, 3, 3, 3, 0, 4, 4, 2
Offset: 1
Examples
Array begins: n A183063 A001227 1 0 1 2 1 1 3 0 2 4 2 1 5 0 2 6 2 2 7 0 2 8 3 1 9 0 3 10 2 2 11 0 2 12 4 2 ...
Links
Crossrefs
Programs
-
Mathematica
Array[{#2, #1 - #2} & @@ {DivisorSigma[0, #], DivisorSum[#, 1 &, EvenQ]} &, 52] // Flatten (* Michael De Vlieger, Mar 04 2018 *)
Comments