OFFSET
1,1
COMMENTS
Any term x = a(m) in this sequence can be used with any term y in A275996 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.
The smallest amicable pair is (220, 284) = (A275996(2), a(2)) = (A063990(1), A063990(2)), where 284 - 220 = 64 is the abundance of 220 and the deficiency of 284.
The amicable pair (66928, 66992) = (A275996(7), a(11)) = (A063990(18), A063990(19)), where 66992 - 66928 = 64 is the deficiency of 66992 and the abundance of 66928.
Contains numbers 2^(k-1)*(2^k + 63) whenever 2^k + 63 is prime. - Max Alekseyev, Aug 27 2025
LINKS
Max Alekseyev, Table of n, a(n) for n = 1..105 (terms below 10^20)
EXAMPLE
a(1) = 134, since 2*134 - sigma(134) = 268 - 204 = 64.
MATHEMATICA
Select[Range[10^7], 2 # - DivisorSigma[1, #] == 64 &] (* Michael De Vlieger, Jan 10 2017 *)
PROG
(PARI) isok(n) = 2*n - sigma(n) == 64; \\ Michel Marcus, Dec 30 2016
CROSSREFS
Deficiency k: A191363 (k=2), A125246 (k=4), A141548 (k=6), A125247 (k=8), A101223 (k=10), A141549 (k=12), A141550 (k=14), A125248 (k=16), A223608 (k=18), A223607 (k=20), A223606 (k=22), A385255(k=24), A275702 (k=26), A387352 (k=32), A175730 (k=42), A101259 (k=54).
KEYWORD
nonn
AUTHOR
Timothy L. Tiffin, Aug 16 2016
EXTENSIONS
a(23)-a(31) from Jinyuan Wang, Mar 02 2020
STATUS
approved
