login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A223612
Numbers k whose abundance is 22: sigma(k) - 2*k = 22.
1
1312, 29824, 8341504, 134029312, 34356723712
OFFSET
1,1
COMMENTS
a(6) > 10^12.
a(6) > 10^13. - Giovanni Resta, Mar 29 2013
a(6) > 10^18. - Hiroaki Yamanouchi, Aug 23 2018
Any term x of this sequence can be combined with any term y of A223606 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. [Proof: If x = a(n) and y = A223606(m), then sigma(x) = 2x+22 and sigma(y) = 2y-22. Thus, sigma(x)+sigma(y) = (2x+22)+(2y-22) = 2x+2y = 2(x+y), which implies that (sigma(x)+sigma(y))/(x+y) = 2(x+y)/(x+y) = 2.] - Timothy L. Tiffin, Sep 13 2016
a(6) <= 2361183240644548624384. Every number of the form 2^(j-1)*(2^j - 23), where 2^j - 23 is prime, is a term. - Jon E. Schoenfield, Jun 02 2019
EXAMPLE
For k = 34356723712, sigma(k) - 2*k = 22.
MATHEMATICA
Select[Range[1, 10^6], DivisorSigma[1, #] - 2 # == 22 &] (* Vincenzo Librandi, Sep 14 2016 *)
PROG
(PARI) for(n=1, 10^8, if(sigma(n)-2*n==22, print1(n ", ")))
(Magma) [n: n in [1..9*10^6] | (SumOfDivisors(n)-2*n) eq 22]; // Vincenzo Librandi, Sep 14 2016
CROSSREFS
Cf. A000203, A033880, A223606 (deficiency 22).
Sequence in context: A322834 A295562 A030646 * A223413 A333407 A221155
KEYWORD
nonn,more
AUTHOR
Donovan Johnson, Mar 23 2013
EXTENSIONS
Name edited by Timothy L. Tiffin, Sep 10 2023
STATUS
approved