OFFSET
1,3
COMMENTS
For p prime number of the form p = 4*m^3 - 1 (A199367) the number k = 2^8*p^4 is a term. Indeed, k' = (2^8*p^4)' = 8*2^7*p^4 + 2^8*4*p^3 = 2^9*p^3*(2*(p + 1)) = 2^9*p^3*(2*(p + 1)) = 2^9*p^3*2*4*m^3 = (2^3*p*8*m)^3 so k is a term.
The sequence is infinite because numbers of the form m = 2^(2^(6*k + 5)), k >= 0, are terms. Indeed: m' = 2^(6*k + 5)*2^(2^(6*k + 5) - 1) = 2^(6*k + 4 + 2^(6*k + 5)) = 2^(6*k + 3 + 2^(6*k + 5) + 1), and the exponent 6*k + 3 + 2^(6*k + 5) + 1 is divisible by 3.
If p is a prime number then the numbers of the form m = p^(64^k), k >= 1 are terms.
EXAMPLE
11664 = 108^2 and 11664' = 46656 = 36^3 so 11664 is a term.
20736 = 144^2 and 20376' = 110592 = 48^3 so 20736 is a term.
MATHEMATICA
d[0] = d[1] = 0; d[n_] := n*Plus @@ ((Last[#]/First[#]) & /@ FactorInteger[n]); Select[Range[0, 6.5*10^5]^2, IntegerQ@Surd[d[#], 3] &] (* Amiram Eldar, Mar 13 2022 *)
PROG
(Magma) f:=func<n|n le 1 select 0 else n*(&+[Factorisation(n)[i][2] / Factorisation(n)[i][1]:i in [1..#Factorisation(n)]])>; [p:p in [s*s:s in [0.. 450000]]| IsPower(Floor(f(p)), 3)];
CROSSREFS
KEYWORD
nonn
AUTHOR
Marius A. Burtea, Mar 13 2022
STATUS
approved