login
A387641
Sum of larger and smaller term of n-th psi-amicable pair, sorted by the smaller members from A323329.
4
2880, 5760, 8640, 11520, 14400, 17280, 23040, 24192, 28800, 30240, 34560, 38880, 43200, 46080, 48384, 57600, 60480, 69120, 72000, 77760, 86400, 92160, 96768, 115200, 120960, 138240, 144000, 155520, 155520, 151200, 172800, 169344, 184320, 193536, 194400, 216000, 230400, 241920
OFFSET
1,1
COMMENTS
Are all terms psi-abundant (A387893)? The first 1000 terms are.
LINKS
FORMULA
a(n) = A323329(n) + A323330(n).
a(n) = A001615(A323329(n)) = A001615(A323330(n)). - Amiram Eldar, Sep 05 2025
EXAMPLE
a(7) = A323329(7) + A323330(7) = 10640 + 12400 = 23040.
MATHEMATICA
psi[n_] := n * Times @@ (1 + 1/FactorInteger[n][[;; , 1]]); psi[1] = 1; t[n_] := psi[n] - n; seq[max_] := Module[{s = {}, n}, Do[n = t[m]; If[n > m && t[n] == m, AppendTo[s, n + m]], {m, 1, max}]; s]; seq[120000] (* Amiram Eldar, Sep 05 2025 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
S. I. Dimitrov, Sep 04 2025
STATUS
approved