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.
%I A336612 #14 Jul 29 2020 18:43:04 %S A336612 1,3,4,12,14,21,30,35,64,77,84,91,105,119,133,135,140,144,161,162,165, %T A336612 192,195,203,217,224,255,259,285,287,301,308,329,336,343,345,360,364, %U A336612 371,375,392,413,420,427,435,465,468,469,476,480,497,511,532,540,553,555,576 %N A336612 Numbers m such that sigma(tau(m)) divides m, where tau(m) is the number of divisors function (A000005) and sigma(m) is the sum of divisors function (A000203). %C A336612 Every 7*p with p prime <> 7 is a term because 7*p / sigma(tau(7*p)) = p (see example). %e A336612 35 = 7 * 5, tau(35) = 4, sigma(tau(35)) = sigma(4) = 4 + 2 + 1 = 7 and 35/7 = 5 hence 35 is a term. %p A336612 with(numtheory) filter:= m -> m/sigma(tau(m)) = floor(m/sigma(tau(m))) : select(filter, [$1..600]); %t A336612 Select[Range[600], Divisible[#, DivisorSigma[1, DivisorSigma[0, #]]] &] (* _Amiram Eldar_, Jul 27 2020 *) %o A336612 (PARI) isok(m) = !(m % sigma(numdiv(m))); \\ _Michel Marcus_, Jul 29 2020 %Y A336612 Cf. A000005, A000203, A062069. %Y A336612 Cf. A336613 (tau(sigma(m)) divides m). %K A336612 nonn %O A336612 1,2 %A A336612 _Bernard Schott_, Jul 27 2020