A304410 Numbers k such that k = Product (p_j^e_j) = Product (p_j*(e_j + 1)).
1, 8, 9, 72, 13440, 21120, 24960, 29568, 32640, 34944, 36480, 44160, 45696, 49280, 51072, 54912, 55680, 58240, 59520, 61824, 71040, 71808, 76160, 77952, 78720, 80256, 82560, 83328, 84864, 85120, 90240, 91520, 94848, 97152, 99456, 101760, 103040, 110208, 113280, 114816, 115584, 117120, 119680
Offset: 1
Keywords
Examples
13440 is a term because 13440 = 2^7*3*5*7 = 2*(7 + 1) * 3*(1 + 1) * 5*(1 + 1) * 7*(1 + 1).
Links
Crossrefs
Programs
-
Mathematica
a[n_] := Times @@ (#[[1]] (#[[2]] + 1) & /@ FactorInteger[n]); a[1] = 1; Select[Range[120000], a[#] == # &]
-
PARI
isok(k) = {my(f = factor(k)); numdiv(f) * vecprod(f[, 1]) == k;} \\ Amiram Eldar, Jan 31 2025
Comments