A259917 All friendly numbers, with smallest member of each club listed just before the second-smallest one.
6, 28, 30, 140, 80, 200, 40, 224, 12, 234, 84, 270, 66, 308, 78, 364, 102, 476, 496, 114, 532, 240, 600, 138, 644, 120, 672, 150, 700, 174, 812, 135, 819, 186, 868, 864, 936, 222, 1036, 246, 1148, 60, 1170, 258, 1204, 282, 1316, 560, 1400, 318, 1484, 1488, 330
Offset: 1
Keywords
Links
- Jeppe Stig Nielsen, Table of n, a(n) for n = 1..6000
- Doyon Kim, Friends of 12, arXiv:1608.06834 [math.HO], 2016.
- Jeffrey Ward, Does Ten Have a Friend?, arXiv:0806.1001 [math.NT], 2008.
- Eric Weisstein's World of Mathematics, Friendly Pair
- Wikipedia, Friendly number.
Programs
-
PARI
known=List(); for(i=1,10^5,a=sigma(i)/i; match=0; for(j=1,#known,if(known[j][1]==a,match=j;break())); if(match,old=known[match][2]; if(old,print1(old,", "); known[match]=[a,0]); print(i,","),listput(known,[a,i])))
Comments