login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A056622 Square root of largest unitary square divisor of n. 4
1, 1, 1, 2, 1, 1, 1, 1, 3, 1, 1, 2, 1, 1, 1, 4, 1, 3, 1, 2, 1, 1, 1, 1, 5, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 6, 1, 1, 1, 1, 1, 1, 1, 2, 3, 1, 1, 4, 7, 5, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 3, 8, 1, 1, 1, 2, 1, 1, 1, 3, 1, 1, 5, 2, 1, 1, 1, 4, 9, 1, 1, 2, 1, 1, 1, 1, 1, 3, 1, 2, 1, 1, 1, 2, 1, 7, 3, 10, 1, 1, 1, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
COMMENTS
Unitary analog of A000188. These numbers are neither unitary nor necessarily square divisors.
Multiplicative because quotient of two multiplicative sequences. - Christian G. Bower, May 16 2005
LINKS
FORMULA
a(n) = A000188(n)/A055229(n).
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
EXAMPLE
For n = 125: A000188(125) = 5, A055229(125) = 5, so a(125) = 1.
For n = 360: A000188(360) = 6, A055229(360) = 2, so a(360) = 3.
MATHEMATICA
Table[Sqrt@ SelectFirst[Reverse@ Divisors@ n, And[IntegerQ@ Sqrt@ #, CoprimeQ[#, n/#]] &], {n, 104}] (* Michael De Vlieger, Dec 06 2018 *)
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
A056622(n) = (A000188(n)/A055229(n)); \\ Antti Karttunen, Nov 19 2017
CROSSREFS
Sequence in context: A334039 A076933 A071974 * A331738 A306333 A237983
KEYWORD
nonn,easy,mult
AUTHOR
Labos Elemer, Aug 08 2000
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 05:18 EDT 2024. Contains 371964 sequences. (Running on oeis4.)