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 A236372 #29 Feb 16 2025 08:33:21 %S A236372 28,200,936,7856640,12103000,8004519424 %N A236372 Terms of A050973 that give minimum record values for A050973(k)/A050972(k). %C A236372 The corresponding terms in A050972 are: 6, 80, 864, 7344000, 11804800, 7908221230. %C A236372 Note that from n=1 to 4 sigma(a(n))/a(n) is increasing, but decreasing for n=5 and 6. Is this going on afterwards? - _Michel Marcus_, Feb 08 2014 %H A236372 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/FriendlyPair.html">Friendly Pair</a>. %e A236372 28/6 > 200/80 > 936/864 > 7856640/7344000 > 12103000/11804800 > ... %o A236372 (PARI) isrmin(i, rmin) = {si = sigma(i); if (gcd(si, i) == 1, return (0)); s = si/i; forstep (j=i-1, 1+i\rmin, -1, if ((sigma(j)/j) == s, if ((newr = i/j) < rmin, return (newr)););); return (0);} %o A236372 lista(nn) = {rmin = 1000; for (i=1, nn, if ((newr = isrmin(i, rmin)), rmin = newr; print1(i, ", ");););} %Y A236372 Cf. A050972, A050973, A236355. %K A236372 nonn,more %O A236372 1,1 %A A236372 _Michel Marcus_, Jan 24 2014 %E A236372 a(6) from _Michel Marcus_, Feb 08 2014