A326064 Odd composite numbers n, not squares of primes, such that (A001065(n) - A032742(n)) divides (n - A032742(n)), where A032742 gives the largest proper divisor, and A001065 is the sum of proper divisors.
117, 775, 10309, 56347, 88723, 2896363, 9597529, 12326221, 12654079, 25774633, 29817121, 63455131, 105100903, 203822581, 261019543, 296765173, 422857021, 573332713, 782481673, 900952687, 1129152721, 3350861677, 3703086229, 7395290407, 9347001661, 9350506057
Offset: 1
Keywords
Links
Crossrefs
Programs
-
Mathematica
Select[Range[15, 10^6 + 1, 2], And[! PrimePowerQ@ #1, Mod[#1 - #2, #2 - #3] == 0] & @@ {#, DivisorSigma[1, #] - #, Divisors[#][[-2]]} &] (* Michael De Vlieger, Jun 22 2019 *)
-
PARI
A032742(n) = if(1==n,n,n/vecmin(factor(n)[,1])); A060681(n) = (n-A032742(n)); A318505(n) = if(1==n,0,(sigma(n)-A032742(n))-n); isA326064(n) = if((n%2)&&(2!=isprimepower(n)), my(s=A032742(n), t=sigma(n)-s); (gcd(t-n, n-A032742(n)) == t-n), 0);
Extensions
More terms from Amiram Eldar, Dec 24 2020
Comments