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!)
A336722 a(n) = gcd(tau(n), sigma(n), pod(n)) where tau(k) is the number of divisors of k (A000005), sigma(k) is the sum of divisors of k (A000203) and pod(k) is the product of divisors of k (A007955). 7
1, 1, 1, 1, 1, 4, 1, 1, 1, 2, 1, 2, 1, 4, 1, 1, 1, 3, 1, 2, 1, 4, 1, 4, 1, 2, 1, 2, 1, 8, 1, 1, 1, 2, 1, 1, 1, 4, 1, 2, 1, 8, 1, 2, 3, 4, 1, 2, 1, 1, 1, 2, 1, 8, 1, 8, 1, 2, 1, 12, 1, 4, 1, 1, 1, 8, 1, 2, 1, 8, 1, 3, 1, 2, 1, 2, 1, 8, 1, 2, 1, 2, 1, 4, 1, 4, 1, 4, 1, 6, 1, 2, 1, 4, 1, 12, 1, 1, 3, 1, 1, 8, 1, 2, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,6
COMMENTS
a(n) = tau(n) for numbers n: 1, 6, 14, 22, 30, 38, 42, 46, 54, 56, 60, 62, 66, 70, 78, 86, 94, 96, 102, ...
LINKS
FORMULA
a(p) = 1 for p = primes (A000040).
a(n) = gcd(A007955(n), A009205(n)). - Antti Karttunen, Aug 10 2020
EXAMPLE
a(6) = gcd(tau(6), sigma(6), pod(6)) = gcd(4, 12, 36) = 4.
MATHEMATICA
a[n_] := GCD @@ {(d = DivisorSigma[0, n]), DivisorSigma[1, n], n^(d/2)}; Array[a, 100] (* Amiram Eldar, Aug 01 2020 *)
PROG
(Magma) [GCD([#Divisors(n), &+Divisors(n), &*Divisors(n)]): n in [1..100]]
(PARI)
A007955(n) = if(issquare(n, &n), n^numdiv(n^2), n^(numdiv(n)/2)); \\ From A007955
A336722(n) = gcd(A007955(n), gcd(numdiv(n), sigma(n))); \\ Antti Karttunen, Aug 10 2020
CROSSREFS
Cf. A009205 (gcd(tau(n), sigma(n)), A306671 (gcd(tau(n), pod(n)), A306682 (gcd(sigma(n), pod(n)).
Cf. A000005 (tau(n)), A000203 (sigma(n)), A007955 (pod(n)), A336723 (lcm(tau(n), sigma(n), pod(n))).
Cf. A277521 (numbers k such that a(k) = tau(k) and simultaneously A336723(k) = pod(k)).
Sequence in context: A229293 A269443 A039927 * A073802 A132157 A103163
KEYWORD
nonn
AUTHOR
Jaroslav Krizek, Aug 01 2020
EXTENSIONS
Data section extended up to a(105) by Antti Karttunen, Aug 10 2020
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 May 10 17:06 EDT 2024. Contains 372388 sequences. (Running on oeis4.)