OFFSET
1,4
COMMENTS
LINKS
Antti Karttunen, Table of n, a(n) for n = 1..16383
Antti Karttunen, Data supplement: n, a(n) computed for n = 1..65537
FORMULA
a(n) = n/A327501(n).
EXAMPLE
The divisors of 36 that are 1 or not a perfect power are {1, 2, 3, 6, 12, 18}, so a(36) = 36/18 = 2.
MATHEMATICA
Table[n/Max[Select[Divisors[n], GCD@@Last/@FactorInteger[#]==1&]], {n, 100}]
PROG
(PARI) A327502(n) = if(n==1, 1, n/vecmax(select(x->((x>1) && !ispower(x)), divisors(n)))); \\ Antti Karttunen, Sep 19 2019 (after program given by Michel Marcus for A327501)
CROSSREFS
KEYWORD
nonn,look
AUTHOR
Gus Wiseman, Sep 16 2019
STATUS
approved