A306199 Numbers k having the property that tau(4*k) < tau(3*k) where tau = A000005.
4, 8, 16, 20, 28, 32, 40, 44, 48, 52, 56, 64, 68, 76, 80, 88, 92, 96, 100, 104, 112, 116, 124, 128, 136, 140, 148, 152, 160, 164, 172, 176, 184, 188, 192, 196, 200, 208, 212, 220, 224, 232, 236, 240
Offset: 1
Keywords
Examples
tau(4*20) = 10, tau(3*20)=12. So 20 is in the sequence.
Links
- Robert Israel, Table of n, a(n) for n = 1..10000
Programs
-
Maple
with(numtheory): for n from 1 to 300 do if tau(4*n) < tau(3*n) then print(n) fi od
-
Mathematica
Select[Range[4, 240, 4], #1 < #2 & @@ DivisorSigma[0, # {4, 3}] &] (* Michael De Vlieger, Jan 29 2019 *) Select[Range[240], IntegerExponent[#, 2] - 2 * IntegerExponent[#, 3] >= 2 &] (* Amiram Eldar, Mar 25 2021 *)
Comments