OFFSET
1,4
COMMENTS
Previous name: "Square root of largest unitary square divisor of n." The previous name was incorrect for numbers that have an odd exponent in their prime factorization that is larger than 3. For the correct square root of largest unitary square divisor of n see A071974. - Amiram Eldar, Jul 26 2024
Multiplicative because quotient of two multiplicative sequences. - Christian G. Bower, May 16 2005
LINKS
Antti Karttunen, Table of n, a(n) for n = 1..16384
FORMULA
Multiplicative with a(p^e) = p^(e/2) if e even, a(p) = 1, and a(p^e) = p^((e-3)/2) for odd e > 1. - Amiram Eldar, Sep 14 2020
Dirichlet g.f.: zeta(2*s-1) * Product_{p prime} (1 + 1/p^s - 1/p^(3*s-1) + 1/p^(3*s)). - Amiram Eldar, Dec 18 2023
a(n) = sqrt(A056623(n)). - Amiram Eldar, Jul 26 2024
EXAMPLE
MATHEMATICA
f[p_, e_] := If[EvenQ[e], p^(e/2), If[e == 1, 1, p^((e - 3)/2)]]; a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100] (* Amiram Eldar, Sep 14 2020 *)
PROG
(PARI)
A000188(n) = core(n, 1)[2]; \\ Michel Marcus, Feb 27 2013
A055229(n) = { my(c=core(n)); gcd(c, n/c); }; \\ Charles R Greathouse IV, Nov 20 2012
CROSSREFS
KEYWORD
nonn,easy,mult
AUTHOR
Labos Elemer, Aug 08 2000
EXTENSIONS
Name replaced with a formula by Amiram Eldar, Jul 26 2024
STATUS
approved