A385008
Integers k such that there exists an integer 0
4, 284, 1210, 2924, 4892, 5564, 6368, 9962, 10425, 10856, 13130, 14595, 18416, 28130, 29631, 35584, 53296, 53912, 64617, 66992, 67268, 71145, 76084, 86812, 87633, 88730, 100695, 102364, 104805, 122390, 123152, 124155, 139815, 147610, 153176, 165596, 168730, 176336, 180848
Offset: 1
Keywords
Examples
(1, 4) is such a pair because sigma(1)^2+sigma(4)^2 = 1^2+7^2 = 2*(1+4)^2.
Links
- David A. Corneth, Table of n, a(n) for n = 1..154 (terms <= 2500000)
- David A. Corneth, PARI program
- S. I. Dimitrov, Generalizations of amicable numbers, arXiv:2408.07387 [math.NT], 2024.
Programs
-
PARI
isok(k) = for (m=1, k-1, if (sigma(m)^2 + sigma(k)^2 == 2*(m+k)^2, return(m))); \\ Michel Marcus, Jun 15 2025
Extensions
a(17)-a(26) from Michel Marcus, Jun 15 2025
a(27)-a(39) from Michael S. Branicky, Jun 26 2025
Comments