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 A335071 #31 Dec 23 2024 14:53:46 %S A335071 1,2,14,21,62,81,117,206,897,957,1334,1634,2685,2974,4364,14282,14841, %T A335071 18873,19358,24957,33998,36566,42818,56564,64665,74918,79826,79833, %U A335071 92685,109214,111506,116937,122073,138237,145215,15511898,16207345,17714486,17983593,18077605 %N A335071 Numbers m such that the delta(m) = abs(sigma(m+1)/(m+1) - sigma(m)/(m)) is smaller than delta(k) for all k < m. %C A335071 Can two consecutive numbers have the same abundancy: sigma(m)/m = sigma(m+1)/(m+1)? If yes, then this sequence is finite. %C A335071 There is no disproof of existence, but this would require both of the consecutive numbers to be k-perfect with the same k >= 2, and it is conjectured that such numbers are multiples of k!. It is very unlikely that an odd k-perfect number will ever be found, and even much less probable that it will be just next to an even k-perfect number. - _M. F. Hasler_, Jun 06 2020 %H A335071 Amiram Eldar, <a href="/A335071/b335071.txt">Table of n, a(n) for n = 1..260</a> %H A335071 SeqFan thread, <a href="https://web.archive.org/web/*/http://list.seqfan.eu/oldermail/seqfan/2020-May/020757.html">A335071 question</a>, SeqFan Mailing List, May 2020. %e A335071 The values of delta(k) for the first terms are 0.5, 0.166..., 0.114..., 0.112..., 0.102..., ... %t A335071 ab[n_] := DivisorSigma[1, n]/n; dm = 2; ab1 = ab[1]; s = {}; Do[ab2 = ab[n]; d = Abs[ab2 - ab1]; If[d < dm, dm = d; AppendTo[s, n]]; ab1 = ab2, {n, 2, 10^5}]; s %o A335071 (PARI) lista(nn) = {my(d=oo, newd, lastm=1, ab=1); for (m=2, nn, nab = sigma(m)/m; if ((newd=abs(nab-ab)) < d, print1(m-1, ", "); d = newd;); ab = nab;);} \\ _Michel Marcus_, May 24 2020 %Y A335071 Cf. A000203, A002961, A017665/A017666. %K A335071 nonn %O A335071 1,2 %A A335071 _Amiram Eldar_, May 22 2020