login
A340110
Coreful 4-abundant numbers: numbers k such that csigma(k) > 4*k, where csigma(k) is the sum of the coreful divisors of k (A057723).
1
10584000, 12700800, 15876000, 19051200, 21168000, 22226400, 25401600, 29635200, 31752000, 37044000, 38102400, 42336000, 44452800, 47628000, 50803200, 52920000, 55566000, 57153600, 59270400, 63504000, 64033200, 66679200, 74088000, 76204800, 79380000, 84672000
OFFSET
1,1
COMMENTS
A coreful divisor d of a number k is a divisor with the same set of distinct prime factors as k, or rad(d) = rad(k), where rad(k) is the largest squarefree divisor of k (A007947).
Analogous to A068404 as A308053 is analogous to A005101.
LINKS
EXAMPLE
10584000 is a term since csigma(10584000) = 42653520 > 4 * 10584000.
MATHEMATICA
f[p_, e_] := (p^(e + 1) - 1)/(p - 1) - 1; s[1] = 1; s[n_] := Times @@ (f @@@ FactorInteger[n]); Select[Range[10^8], s[#] > 4*# &]
CROSSREFS
Subsequence of A308053 and A340109.
Similar sequences: A068404, A307114.
Sequence in context: A306476 A251640 A066870 * A250963 A233500 A195224
KEYWORD
nonn
AUTHOR
Amiram Eldar, Dec 28 2020
STATUS
approved