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 A362054 #6 Apr 07 2023 17:42:50 %S A362054 70,1092,1428,1596,4030,5830,50388,133042,216300,269990,437745,442365, %T A362054 4199030,22982388,124540390,361745930,507298090,541900788,624032630, %U A362054 1113445430,3002432810,6771402960,13455037365,17242767300,60428265370 %N A362054 Primitive unitary abundant numbers k (A302573) whose unitary abundancy index usigma(k)/k has a record low value. %C A362054 The unitary abundancy index of an integer k is usigma(k)/k, where usigma is the sum-of-unitary-divisors function (A034448). %C A362054 Terms k of A302573 such that usigma(k)/k < usigma(m)/m for all smaller terms m < k of A302573. %e A362054 The unitary abundancy indices of the first terms are 72/35 > 80/39 > 240/119 > 800/399 > 4032/2015 > 5832/2915 > ... > 2. %t A362054 f1[p_, e_] := 1 + 1/p^e; f2[p_, e_] := p^e/(p^e + 1); %t A362054 (* Returns the unitary abundancy index of n if n is primitive unitary abundant,and 0 otherwise: *) %t A362054 uabIndex[n_] := If[(r = Times @@ f1 @@@ (f = FactorInteger[n])) > 2 && r * Max @@ f2 @@@ f < 2, r, 0]; uabIndex[1] = 0; %t A362054 seq[kmax_] := Module[{s = {}, uab, uabm = 3}, Do[If[0 < (uab = uabIndex[k]) < uabm, uabm = uab; AppendTo[s, k]], {k, 1, kmax}]; s]; seq[10^6] %o A362054 (PARI) uabindex(n) = {my(f = factor(n), r); r = prod(i = 1, #f~, 1 + 1/f[i, 1]^f[i, 2]); if(r <= 2, return(0)); if(vecmax(vector(#f~, i, f[i, 1]^f[i, 2]/(f[i, 1]^f[i, 2] + 1))) * r < 2, r, 0);} \\ Returns the unitary abundancy index of n if n is primitive unitary abundant, and 0 otherwise. %o A362054 lista(kmax) = {my(uab, uabm = 3); for(k = 1, kmax, uab = uabindex(k); if(uab > 0 && uab < uabm, uabm = uab; print1(k, ", ")));} %Y A362054 The unitary version of A362053. %Y A362054 Cf. A034448, A302573. %K A362054 nonn,more %O A362054 1,1 %A A362054 _Amiram Eldar_, Apr 06 2023