login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A331752
Numbers k such that squarefree part of sigma(k) is equal to squarefree part of 2*k.
4
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,1
COMMENTS
Numbers k such that A007913(sigma(k)) is equal to A007913(2*k), thus numbers for which sigma(k) has the same set of distinct prime factors with an odd exponent as 2*k.
Among the first 257 terms, these four are also in A228058:
46277101 = 61 * 13^2 * 67^2,
49889853 = 13 * 3^2 * 653^2,
106706925 = 13 * 3^2 * 5^2 * 191^2,
676830973 = 37 * 7^2 * 13^2 * 47^2.
EXAMPLE
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.
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 *)
PROG
(PARI) isA331752(n) = (core(2*n)==core(sigma(n)));
CROSSREFS
Cf. A000396 (a subsequence).
Sequence in context: A173360 A085844 A325638 * A083387 A104511 A325021
KEYWORD
nonn
AUTHOR
Antti Karttunen, Feb 06 2020
STATUS
approved