cp's OEIS Frontend

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.

A302570 Unitary barely abundant numbers: unitary abundant numbers k such that usigma(k)/k < usigma(m)/m for all unitary abundant numbers m < k, where usigma(k) is the sum of the unitary divisors of k (A034448).

This page as a plain text file.
%I A302570 #19 Jul 21 2021 00:44:46
%S A302570 30,42,66,70,222,246,258,282,294,318,354,366,402,426,438,474,498,534,
%T A302570 582,606,618,642,654,678,726,750,762,786,822,834,894,906,942,978,1002,
%U A302570 1014,1038,1074,1086,1146,1158,1182,1194,1266,1338,1362,1374,1398,1434
%N A302570 Unitary barely abundant numbers: unitary abundant numbers k such that usigma(k)/k < usigma(m)/m for all unitary abundant numbers m < k, where usigma(k) is the sum of the unitary divisors of k (A034448).
%C A302570 The unitary version of A071927.
%H A302570 Amiram Eldar, <a href="/A302570/b302570.txt">Table of n, a(n) for n = 1..10000</a>
%e A302570 The values of usigma(k)/k are 2.4, 2.285..., 2.181..., 2.057..., 2.054...
%t A302570 usigma[n_] := If[n == 1, 1, Times @@ (1 + Power @@@ FactorInteger[n])]; seq = {}; r = 3; Do[s = usigma[n]/n; If[s > 2 && s < r, AppendTo[seq, n]; r = s], {n, 1, 10000}]; seq
%Y A302570 Cf. A034448, A034683, A071927, A302572.
%K A302570 nonn
%O A302570 1,1
%A A302570 _Amiram Eldar_, Apr 10 2018