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 A238895 #48 Sep 23 2022 07:14:52 %S A238895 2,3,6,21,31,49,73,91,115,121,169,211,301,331,361,391,421,511,631,721, %T A238895 781,841,1051,1261,1471,1561,1681,1891,2101,2311,2521,2731,3151,3361, %U A238895 3571,3991,4201,4411,4621,5251,5461,6091,6511,6721,6931,7771,7981,8191,9031 %N A238895 Numbers m > 1 such that a record number of numbers k have m as the sum of the proper divisors of k. %C A238895 The number of times that a(n) appears in A001065 is A238896(n). %C A238895 By analogy with the untouchable numbers (A005114) and the highly composite numbers (A002182), these numbers can be named "highly touchable" (see Lignon). - _Daniel Lignon_, Mar 21 2014 %C A238895 Indices of record values in A048138. - _Franklin T. Adams-Watters_, Jul 27 2014 %D A238895 Daniel Lignon, Dictionnaire de (presque) tous les nombres entiers, Editions Ellipses, 2012, see p. 317 (in French). %H A238895 Amiram Eldar, <a href="/A238895/b238895.txt">Table of n, a(n) for n = 1..245</a> (terms 1..139 from Daniel Mondot) %e A238895 For 2, there are no numbers. %e A238895 For 3, there is 1 number: 4. %e A238895 For 6, there are 2 numbers: 6 and 25. %e A238895 For 21, there are 3 numbers: 18, 51, 91. %e A238895 For 31, there are 5 numbers: 32, 125, 161, 209, 221. %e A238895 For 49, there are 6 numbers: 75, 215, 287, 407, 527, 551. %t A238895 nn = 1000; s = Table[0, {nn}]; Do[k = DivisorSigma[1, n] - n; If[0 < k <= nn, s[[k]]++], {n, nn^2}]; t = {}; mx = -1; Do[If[s[[n]] > mx, mx = s[[n]]; AppendTo[t, {n, mx}]], {n, 2, nn}]; Transpose[t][[1]] %Y A238895 Cf. A001065, A005114, A048138, A238896. %Y A238895 Cf. A152454 (row n lists the numbers whose proper divisors sum to n). %Y A238895 Cf. A239625 (irregular table giving the rows of numbers that produce a(n)). %K A238895 nonn %O A238895 1,1 %A A238895 _T. D. Noe_, Mar 10 2014