A181647 Numbers m having the same sum of divisors as m+20 has.
42, 51, 123, 141, 204, 371, 497, 708, 923, 992, 1034, 1343, 1391, 1484, 1595, 1691, 1826, 3266, 3317, 5015, 5152, 7367, 8003, 9132, 9287, 9494, 11078, 13223, 15458, 15833, 17975, 18752, 19428, 20120, 20915, 21251, 21566, 24119, 24503, 25787, 28000, 29726, 29795
Offset: 1
Keywords
Examples
a(1) = 42, divisors(42) = {1,2,3,6,7,14,21,42}, divisors(42+20) = {1,2,31,62}: 1+2+3+6+7+14+21+42 = 1+2+31+62.
References
- Jean-Marie De Koninck, Those Fascinating Numbers, Amer. Math. Soc., 2009, page 16.
Links
- Donovan Johnson, Table of n, a(n) for n = 1..1000 (first 100 terms from Reinhard Zumkeller)
- Andreas Weingartner, On the Solutions of sigma(n) = sigma(n+k), Journal of Integer Sequences, Vol. 14 (2011), Article 11.5.5.
Crossrefs
Programs
-
Mathematica
Select[Range[30000], Equal @@ DivisorSigma[1, # + {0, 20}] &] (* Amiram Eldar, Apr 16 2025 *)
-
PARI
isok(n) = sigma(n) == sigma(n+20); \\ Michel Marcus, Feb 06 2016