OFFSET
1,1
COMMENTS
Powerful numbers k such that A396544(k) = k.
See A284318 and A322791 for the definitions of coreful divisors and exponential divisors, respectively.
a(5) > 10^18.
If p is a Mersenne prime exponent (A000043) such that p+2 is prime, then 2^(p+2) * (2^p-1)^2 is a term.
Of the 52 known Mersenne prime exponents, only 5 have this property: 3, 5, 17, 107 and 521 (A087858).
a(2)-a(4) are of this form, corresponding to p = 3, 5, 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^# &];
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, f[i, 1]^d)) == k; }
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Amiram Eldar, May 29 2026
STATUS
approved
