login
A223610
Numbers k whose abundance is 18: sigma(k) - 2*k = 18.
3
208, 6976, 8415, 31815, 351351, 2077696, 20487159, 159030135, 536559616, 2586415095, 137433972736, 2199003332608
OFFSET
1,1
COMMENTS
a(12) > 10^12.
a(13) > 10^13. - Giovanni Resta, Mar 29 2013
a(13) > 10^18. - Hiroaki Yamanouchi, Aug 23 2018
Any term x of this sequence can be combined with any term y of A223608 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
a(13) <= 2305842988812599296. Every number of the form 2^(j-1)*(2^j - 19), where 2^j - 19 is prime, is a term. - Jon E. Schoenfield, Jun 02 2019
EXAMPLE
For k = 159030135, sigma(k) - 2*k = 18.
MATHEMATICA
Select[Range[1, 10^8], DivisorSigma[1, #] - 2 # == 18 &] (* Vincenzo Librandi, Sep 14 2016 *)
PROG
(PARI) for(n=1, 10^8, if(sigma(n)-2*n==18, print1(n ", ")))
(Magma) [n: n in [1..9*10^6] | (SumOfDivisors(n)-2*n) eq 18]; // Vincenzo Librandi, Sep 14 2016
CROSSREFS
Cf. A000203, A033880, A223608 (deficiency 18).
Sequence in context: A231111 A339762 A223252 * A184276 A268091 A209300
KEYWORD
nonn,more
AUTHOR
Donovan Johnson, Mar 23 2013
EXTENSIONS
a(12) from Giovanni Resta, Mar 29 2013
STATUS
approved