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 A285906 #19 Jun 20 2020 03:37:09 %S A285906 1,4,8,16,32,64,72,144,216,288,432,864,1728,2592,3456,3600,5184,7200, %T A285906 10800,21600,43200,64800,86400,108000,129600,216000,259200,324000, %U A285906 432000,518400,529200,648000,1058400,2116800,3175200,4233600,5292000,6350400,10584000 %N A285906 Numbers n such that sigma(n)/usigma(n) > sigma(m)/usigma(m) for all m < n, where sigma(n) is the sum of divisors of n (A000203) and usigma(n) is the sum of unitary divisors of n (A034448). %C A285906 This sequence is infinite. The smallest values of n for which sigma(n)/usigma(n) > 2, 3 and 4 are a(7), a(19), and a(44). %H A285906 Amiram Eldar, <a href="/A285906/b285906.txt">Table of n, a(n) for n = 1..56</a> %e A285906 sigma(72)=195, usigma(72)=90, and their ratio 195/90=13/6 is higher than sigma(m)/usigma(m) for all m<72, thus 72 is in this sequence. %t A285906 usigma[n_] := If[n == 1, 1, Times @@ (1 + Power @@@ FactorInteger[n])]; %t A285906 a={}; rmax=0; Do[r=DivisorSigma[1, n]/usigma[n]; If[r>rmax, AppendTo[a, n]; rmax=r], {n, 3000}]; a %Y A285906 Cf. A000203, A034448. %K A285906 nonn %O A285906 1,2 %A A285906 _Amiram Eldar_, Apr 28 2017