A384487 Numbers k such that there exist two integers 0
396, 504, 600, 756, 840, 924, 1056, 1080, 1140, 1170, 1260, 1320, 1428, 1440, 1488, 1512, 1540, 1560, 1596, 1638, 1650, 1656, 1680, 1704, 1710, 1740, 1800, 1820, 1840, 1848, 1872, 1932, 1980, 2016, 2040, 2100, 2160, 2184, 2232, 2244, 2256, 2280, 2340, 2352, 2380, 2400, 2430, 2436, 2448, 2460, 2484
Offset: 1
Keywords
Examples
504 is a term because (72, 360, 504) is a triple with 72/sigma(72) + 360/sigma(360) + 504/sigma(504) = 1. 420 is not a term because the corresponding triple is (84, 420, 420).
Links
- Robert Israel, Table of n, a(n) for n = 1..600
- S. I. Dimitrov, Generalizations of amicable numbers, arXiv:2408.07387 [math.NT], 2024.
Programs
-
Maple
S:= {}: S2:= {}: R:= NULL: count:= 0: for k from 1 while count < 100 do v:= k/numtheory:-sigma(k); if member(1-v,S2) then R:= R, k; count:= count+1; fi; S2:= S2 union map(t -> `if`(t+v<1,t+v,NULL),S); S:= S union {v}; od: R; # Robert Israel, Jul 01 2025
-
PARI
isok(k) = for (i=1, k-1, for (j=i+1, k-1, if (i/sigma(i) + j/sigma(j) + k/sigma(k) == 1, /* print([i,j,k]); */ return(1)););); \\ Michel Marcus, Jun 02 2025
Extensions
More terms from Michel Marcus, Jun 02 2025
Comments