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!)
A337325 a(n) is the smallest number m such that gcd(tau(m), sigma(m), pod(m)) = 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). 1

%I #28 Sep 08 2022 08:46:25

%S 1,10,18,6,5000,90,66339,30,288,3240,10036224,60,582160384,20412,

%T 16200,168,49030215219,612,4637065216,1520,142884,912384,

%U 98881718827959,420,7543125,479232,14112,5824,26559758051835904,104400,25796647321600,840,491774976,1268973568

%N a(n) is the smallest number m such that gcd(tau(m), sigma(m), pod(m)) = 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).

%C p^(q-1) | a(q). If p != q then (p^(q-1) * q) | a(q) for some primes p and q. A similar idea can be used for nonprime q. - _David A. Corneth_, Aug 25 2020

%e For n = 6; a(6) = 90 because 90 is the smallest number with gcd(tau(90), sigma(90), pod(90)) = gcd(12, 234, 531441000000) = 6.

%o (Magma) [Min([m: m in[1..10^5] | GCD([#Divisors(m), &+Divisors(m), &*Divisors(m)]) eq k]): k in [1..10]]

%o (PARI) f(n) = my(d=divisors(factor(n))); gcd([#d, vecsum(d), vecprod(d)]);

%o a(n) = my(m=1); while (f(m) != n, m++); m; \\ _Michel Marcus_, Sep 21 2020

%Y Cf. A336722 (gcd(tau(n), sigma(n), pod(n))).

%Y Cf. A337324 (least m such that gcd(m,tau(m),sigma(m),pod(m)) = n).

%Y Cf. A000005, A000203, A007955.

%K nonn

%O 1,2

%A _Jaroslav Krizek_, Aug 23 2020

%E a(11) and a(13) from _Amiram Eldar_, Aug 25 2020

%E More terms from _Jinyuan Wang_, Oct 03 2020

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 July 30 12:41 EDT 2024. Contains 374743 sequences. (Running on oeis4.)