OFFSET
1,1
COMMENTS
See A284318 and A361255 for the definitions of coreful divisors and exponential unitary divisors, respectively.
a(7) > 10^18.
If p is a Mersenne prime exponent (A000043) such that p+2 is prime power (A246655), then 2^(p+2) * (2^p-1)^2 is a term.
Of the 52 known Mersenne prime exponents, only 7 have this property: 2, 3, 5, 7, 17, 107 and 521.
a(1) and a(3)-a(6) are of this form, corresponding to p = 2, 3, 5, 7 and 17. The next terms of this form are 2^109 * (2^107 - 1)^2 = 1.708...*10^97 and 2^523 * (2^521 - 1)^2 = 1.294*10^471.
MATHEMATICA
f1[p_, e_] = (p^(e+1)-1)/(p-1) - 1;
f2[p_, e_] = DivisorSum[e, p^# &, CoprimeQ[#, e/#] &];
q[k_] := Module[{fct = FactorInteger[k]}, Min[fct[[;; , 2]]] > 1 && Times @@ f1 @@@ fct - Times @@ f2 @@@ fct == k]; q[1] = False; Select[Range[150000], q]
PROG
(PARI) isok(k) = {my(f = factor(k)); ispowerful(f) && prod(i = 1, #f~, (f[i, 1]^(f[i, 2]+1) - 1)/(f[i, 1]-1) - 1) - prod(i = 1, #f~, sumdiv(f[i, 2], d, if(gcd(d, f[i, 2]/d) == 1, f[i, 1]^d))) == k; }
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Amiram Eldar, May 29 2026
STATUS
approved
