A352810 Values taken both by sigma (A000203) and by antisigma (A024816), where sigma is the sum of divisors function and antisigma is the sum of the non-divisors of n less than n function.
3, 20, 32, 54, 96, 132, 168, 217, 240, 252, 294, 338, 350, 464, 465, 582, 819, 1052, 1080, 1182, 1280, 1476, 1710, 1953, 2220, 2484, 2786, 3080, 3200, 3402, 3708, 4074, 4404, 4440, 4680, 4794, 5250, 5670, 6064, 6080, 6576, 6900, 7248, 7458, 8000, 8442, 8514, 8940
Offset: 1
Keywords
Examples
As sigma(31) = 1+31 = 32 and antisigma(9) = 1+2+4+5+6+7+8 = 32, then 32 is a term.
Programs
-
Mathematica
m = 10^4; r = Range[m]; s = DivisorSigma[1, r]; as = r*(r + 1)/2 - s; Select[Intersection[s, as], # <= m &] (* Amiram Eldar, Apr 05 2022 *)
Extensions
More terms from Amiram Eldar, Apr 05 2022
Comments