A357697 Odd cubefree abundant numbers.
1575, 2205, 3465, 4095, 5355, 5775, 5985, 6435, 6825, 7245, 8085, 8415, 8925, 9135, 9555, 9765, 11025, 11655, 12705, 12915, 13545, 14805, 15015, 16695, 17325, 18585, 19215, 19635, 20475, 21105, 21945, 22365, 22995, 23205, 24255, 24885, 25935, 26145, 26565, 26775
Offset: 1
Keywords
Examples
1575 = 3^2 * 5^2 * 7 is a term since it is odd and cubefree and sigma(1575) = 3224 > 2*1575.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Crossrefs
Programs
-
Mathematica
f[p_, e_] := (p^(e+1)-1)/(p-1); q[1] = 0; q[n_] := AllTrue[(fct = FactorInteger[n])[[;;, 2]], # < 3 &] && Times @@ f @@@ fct > 2*n; Select[Range[1, 30000, 2], q]
-
PARI
is(n) = {my(f); if(n%2 == 0, return(0)); f = factor(n); (n==1 || vecmax(f[,2]) < 3) && sigma(f, -1) > 2};
Comments