A357686 Nonsquarefree numbers k such that A293228(k) > k.
60, 84, 132, 140, 156, 204, 228, 276, 348, 372, 420, 444, 492, 516, 564, 636, 660, 708, 732, 780, 804, 852, 876, 924, 948, 996, 1020, 1068, 1092, 1140, 1164, 1212, 1236, 1284, 1308, 1356, 1380, 1428, 1524, 1540, 1572, 1596, 1644, 1668, 1716, 1740, 1788, 1812, 1820
Offset: 1
Keywords
Examples
60 = 2^2 * 15 is a term since it is nonsquarefree, its aliquot squarefree divisors are {1, 2, 3, 5, 6, 10, 15, 30} and their sum is 72 > 60.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
q[n_] := AnyTrue[(f = FactorInteger[n])[[;;, 2]], # > 1 &] && Times @@ (1 + f[[;; , 1]]) > n; Select[Range[2, 2000], q]
-
PARI
is(n) = {my(f = factor(n)); if(n == 1 || vecmax(f[,2]) == 1, return(0)); prod(i=1, #f~, f[i,1]+1) > n};
Comments