cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A181647 Numbers m having the same sum of divisors as m+20 has.

Original entry on oeis.org

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

Views

Author

Reinhard Zumkeller, Nov 03 2010

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.

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

Formula

A000203(a(n)) = A000203(a(n) + 20).