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 A348272 #8 Oct 13 2021 10:31:37 %S A348272 1,4,9,12,16,28,36,48,80,100,112,144,180,240,300,324,336,396,400,432, %T A348272 468,528,576,684,720,900,1008,1200,1296,1584,1872,2160,2268,2304,2448, %U A348272 2736,2880,3312,3600,5040,6300,6480,7056,7920,9072,9360,10800,11088,11520,12240 %N A348272 Noninfinitary highly abundant numbers: numbers m such that nisigma(m) > nisigma(k) for all k < m, where nisigma(k) is the sum of noninfinitary divisors of n (A348271). %C A348272 The corresponding record values are 0, 2, 3, 8, 14, 16, 41, 56, 84, 87, 112, ... %H A348272 Amiram Eldar, <a href="/A348272/b348272.txt">Table of n, a(n) for n = 1..500</a> %e A348272 The first 9 values of A348271(k) for k = 1 to 9 are: 0, 0, 0, 2, 0, 0, 0, 0 and 3. The record values, 0, 2 and 3, occur at 1, 4 and 9, the first 3 terms of this sequence. %t A348272 f[p_, e_] := Module[{b = IntegerDigits[e, 2], m}, m = Length[b]; Product[If[b[[j]] > 0, 1 + p^(2^(m - j)), 1], {j, 1, m}]]; isigma[1] = 1; isigma[n_] := Times @@ f @@@ FactorInteger[n]; s[n_] := DivisorSigma[1,n] - isigma[n]; seq={}; sm = -1; Do[s1 = s[n];If[s1 > sm, sm= s1; AppendTo[seq, n]], {n, 1, 10^4}]; seq %Y A348272 Cf. A348271. %Y A348272 The noninfinitary version of A002093. %Y A348272 Similar sequences: A285614, A292983, A327634, A328134, A329883. %K A348272 nonn %O A348272 1,2 %A A348272 _Amiram Eldar_, Oct 09 2021