A331752 Numbers k such that squarefree part of sigma(k) is equal to squarefree part of 2*k.
6, 28, 468, 496, 775, 2268, 3780, 4655, 7448, 8128, 9000, 10880, 10976, 25137, 40131, 40176, 58752, 62775, 66960, 91000, 137541, 137940, 140800, 160930, 167400, 173600, 195938, 224450, 307125, 377055, 399360, 406224, 417477, 494832, 569184, 603288, 634725, 639158, 658368, 773175, 869022, 881280, 889056, 1005480
Offset: 1
Keywords
Examples
For n = 46277101 = 61 * 13^2 * 67^2, sigma(46277101) = 51703722 = 2 * 3^2 * 7^2 * 31^2 * 61, with A007913(sigma(46277101)) = 2*61 = A007913(2*46277101), thus 46277101 is included in this sequence.
Links
Programs
-
Mathematica
Select[Range[10^6], SameQ @@ Map[Sqrt[#] /. (c_: 1)*a_^(b_: 0) :> (c*a^b)^2 &, {DivisorSigma[1, #], 2 #}] &] (* Michael De Vlieger, Feb 08 2020, after Bill Gosper at A007913 *)
-
PARI
isA331752(n) = (core(2*n)==core(sigma(n)));
Comments