A383698 Primitive exponential squarefree exponential abundant numbers: the powerful terms of A383697.
900, 1764, 4356, 4500, 4900, 6084, 10404, 12348, 12996, 19044, 30276, 34596, 44100, 47916, 49284, 60516, 66564, 79092, 79524, 88200, 101124, 108900, 112500, 125316, 132300, 133956, 152100, 161604, 176868, 181476, 191844, 213444, 217800, 220500, 224676, 246924
Offset: 1
Keywords
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
fun[p_, e_] := DivisorSum[e, p^# &, SquareFreeQ[#] &]; q[n_] := Min[(f = FactorInteger[n])[[;; , 2]]] > 1 && Times @@ fun @@@ f > 2*n; Select[Range[250000], q]
-
PARI
fun(p, e) = sumdiv(e, d, if(issquarefree(d), p^d, 0)); isok(k) = {my(f = factor(k)); ispowerful(f) && prod(i = 1, #f~, fun(f[i, 1], f[i, 2])) > 2*k;}
Comments