A323330 Larger of amicable pair m < n defined by t(n) = m and t(m) = n where t(n) = psi(n) - n and psi(n) = A001615(n) is the Dedekind psi function.
1550, 3100, 4790, 6200, 7750, 9580, 12400, 12922, 15500, 15290, 19160, 20330, 23950, 24800, 25844, 31000, 30580, 38320, 38750, 40660, 47900, 49600, 51688, 62000, 61160, 76640, 77500, 82150, 81320, 76450, 95800, 90454, 99200, 103376, 101650, 119750, 124000, 122320
Offset: 1
Keywords
Links
- Amiram Eldar, Table of n, a(n) for n = 1..1000
- S. I. Dimitrov, On psi-amicable numbers and their generalizations, arXiv:2508.02318 [math.NT], 2025. See p. 2.
Programs
-
Mathematica
psi[n_] := n*Times@@(1+1/Transpose[FactorInteger[n]][[1]]); t[n_]:= psi[n] - n; s={}; Do[n=t[m]; If[n>m && t[n]==m, AppendTo[s,n]], {m, 1, 120000}]; s
Comments