OFFSET
1,2
LINKS
Antti Karttunen, Table of n, a(n) for n = 1..65537
MATHEMATICA
Array[If[# == 1, 1, Min[#, Times @@ Flatten@ Map[Function[{p, e}, Map[Prime[Log2@ # + 1]^(2^(PrimePi@ p - 1)) &, DeleteCases[NumberExpand[e, 2], 0]]] @@ # &, FactorInteger[#]]]] &, 96] (* Michael De Vlieger, Jan 21 2020 *)
PROG
(PARI)
A019565(n) = factorback(vecextract(primes(logint(n+!n, 2)+1), n));
A225546(n) = { my(f=factor(n)); for (i=1, #f~, my(p=f[i, 1]); f[i, 1] = A019565(f[i, 2]); f[i, 2] = 2^(primepi(p)-1); ); factorback(f); }; \\ From A225546
\\ If the following returns 1, then it is certainly true that A225546(p^e) > n (where p^e is one of the divisors of n), thus A225546(n) > n follows:
is_certainly_gt(p, e, n) = { my(b=A019565(e), j=(primepi(p)-1)); if(b>n, 1, if((logint(b, 2)*j)>logint(n, 2), 1, 0)); };
CROSSREFS
KEYWORD
nonn
AUTHOR
Antti Karttunen, Jan 20 2020
STATUS
approved