A381740 Squarefree numbers k such that k^2 is abundant.
6, 10, 14, 30, 42, 66, 70, 78, 102, 105, 110, 114, 130, 138, 154, 170, 174, 182, 186, 190, 210, 222, 230, 238, 246, 258, 266, 282, 286, 290, 310, 318, 322, 330, 354, 366, 370, 374, 390, 402, 406, 410, 418, 426, 430, 434, 438, 442, 462, 470, 474, 498, 506, 510
Offset: 1
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
Select[Range[600], SquareFreeQ[#] && DivisorSigma[-1, #^2] > 2 &]
-
PARI
isok(k) = {my(f = factor(k)); if(!issquarefree(f), 0, prod(i = 1, #f~, f[i,2] *= 2); sigma(f, -1) > 2);}
Comments