login
A212327
Numbers k such that A001065(x)*x = k has at least two solutions.
4
36, 62480, 141440, 1245335, 1432640, 2286080, 6680960, 7660880, 27931280, 39685376, 116636864, 179299575, 318047135, 318523136, 358491735, 533718135, 709131500, 1119849500, 1122571695, 1814416175, 2081125376, 3565970135, 3991520000, 4141021500, 4483640576
OFFSET
1,1
COMMENTS
Products of pairs of amicable numbers are members of this sequence.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..51 (terms below 10^11)
Passawan Noppakaew and Prapanpong Pongsriiam, Product of Some Polynomials and Arithmetic Functions, J. Int. Seq., Vol. 26 (2023), Article 23.9.1.
EXAMPLE
For k = 36, A001065(6)*6 = 36, A001065(9)*9 = 36, therefore 36 is a term.
MATHEMATICA
q[k_] := DivisorSum[k, 1 &, # * (DivisorSigma[1, #] - #) == k &] > 1; Select[Range[23*10^5], q] (* Amiram Eldar, Jul 01 2025 *)
PROG
(PARI) isok(k) = {my(d = divisors(k, 1), c = 0); for(i = 1, #d, if(d[i][1] * (sigma(d[i][2]) - d[i][1]) == k, c++; if(c == 2, break))); c == 2; } \\ Amiram Eldar, Jul 01 2025
CROSSREFS
KEYWORD
nonn
AUTHOR
Naohiro Nomoto, May 18 2012
EXTENSIONS
a(9)-a(25) from Donovan Johnson, May 21 2012
STATUS
approved