login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A349111
Powerful superabundant numbers: numbers m such that psigma(m)/m > psigma(k)/k for all k < m, where psigma(k) is the sum of powerful divisors of k (A183097).
1
1, 4, 8, 16, 32, 64, 128, 144, 216, 432, 864, 1296, 1728, 2592, 5184, 10368, 15552, 31104, 54000, 108000, 162000, 216000, 324000, 648000, 1296000, 1944000, 3240000, 3888000, 6480000, 9720000, 19440000, 38880000, 58320000, 74088000, 111132000, 222264000, 444528000, 666792000
OFFSET
1,2
COMMENTS
The corresponding record values are 1, 5/4, 13/8, 29/16, 61/32, 125/64, ...
The least term k with psigma(k)/k > m, for m = 2, 3, ..., is 144, 54000, 666792000, ...
MATHEMATICA
f[p_, e_] := (p^(e+1)-1)/(p-1) - p; s[1] = 1; s[n_] := Times @@ f @@@ FactorInteger[n]; seq = {}; rm = 0; Do[r1 = s[n]/n; If[r1 > rm, rm = r1; AppendTo[seq, n]], {n, 1, 10^6}]; seq
CROSSREFS
Subsequence of A349112.
Similar sequences: A002110 (unitary), A037992 (infinitary), A061742, A292984, A329882, A348273.
Sequence in context: A353500 A005934 A085629 * A307870 A330873 A233442
KEYWORD
nonn
AUTHOR
Amiram Eldar, Nov 08 2021
STATUS
approved