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 A067740 #20 Aug 29 2019 05:26:26 %S A067740 1,14,2,6,118740,2915640,74322349920 %N A067740 Smallest number k such that sigma(k)/sigma(phi(k)) = n. %C A067740 The quotient sigma(k)/sigma(phi(k)) is integral for the numbers in A190503. Does a(n) exist for all n? %C A067740 10^11 < a(8) <= 11224976029787520. - _Donovan Johnson_, Jun 07 2011 %F A067740 a(n)=Min{x; A000203(x)/A000203[A000010(x)]=n} %e A067740 n=6, a(6)=2915640, sigma(2915640)=11793600, phi(2915640)=608256, sigma(608256)=1965600 and 11793600=6*1965600. %t A067740 g[x_] := DivisorSigma[1, x] / DivisorSigma[1, EulerPhi[x]]; m=10; up=200000; a = Table[0, {m}]; Do[ b = g[n]; If[b <= m && IntegerQ[b] && a[[b]] == 0, a[[b]] = n], {n, 1, up} ]; a %Y A067740 Cf. A000203, A000010, A067385, A190503. %K A067740 nonn,more %O A067740 1,2 %A A067740 _Labos Elemer_, Jan 29 2002 %E A067740 a(7) from _Donovan Johnson_, Jun 07 2011