OFFSET
1,1
COMMENTS
Contains 2^(t-1)*(2^t+19) for t in A057221. - Max Alekseyev, Jan 22 2026
Any term x of this sequence can be combined with any term y of A223611 to satisfy the property (sigma(x)+sigma(y))/(x+y) = 2, which is a necessary (but not sufficient) condition for two numbers to be amicable. - Timothy L. Tiffin, Sep 13 2016
275662616397029416254228490, 22676188020687854193666634934837575690, 250702780414440783177905513094097920010, and 2831124349658085626574918972050788187735050 are terms of this sequence. - Alexander Violette, Dec 20 2025 and Apr 12 2026
Also contains 6944097377138312533769355550136284569610 and 642489841737594313369346857791485340812925092518774130638223539538231296. - Max Alekseyev, Jan 22 2026
EXAMPLE
For k = 1360810, sigma(k)-2*k = -20.
MATHEMATICA
Select[Range[1, 10^8], DivisorSigma[1, #] - 2 # == - 20 &] (* Vincenzo Librandi, Sep 14 2016 *)
PROG
(PARI) for(n=1, 10^8, if(sigma(n)-2*n==-20, print1(n ", ")))
(Magma) [n: n in [1..9*10^6] | (SumOfDivisors(n)-2*n) eq -20]; // Vincenzo Librandi, Sep 14 2016
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
a(17)-a(21) from Hiroaki Yamanouchi, Aug 21 2018
a(22)-a(23) from Alexander Violette confirmed and added by Max Alekseyev, Feb 04 2026
STATUS
approved
