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!)
A130279 Smallest number having exactly n square divisors. 15

%I #30 Oct 11 2022 14:06:26

%S 1,4,16,36,256,144,4096,576,1296,2304,1048576,3600,16777216,36864,

%T 20736,14400,4294967296,32400,68719476736,57600,331776,9437184,

%U 17592186044416,129600,1679616,150994944,810000,921600,72057594037927936

%N Smallest number having exactly n square divisors.

%C A046951(a(n)) = n and A046951(m) <> n for m < a(n);

%C all terms are smooth squares: if prime(k) is a factor of a(n) then also prime(i) are factors, i<k;

%C a(p) = 2^(2*(p-1)) for primes p;

%C if prime(j) is the greatest prime factor of a(n) then a(2*n) = a(n)*prime(j+1)^2;

%C A001221(a(n)) = A122375(n); A001222(a(n)) = 2*A122376(n).

%C a(n+1) is the smallest nonsquarefree number m such that Diophantine equation S(x,y) = (x+y) + (x-y) + (x*y) + (x/y) = m has exactly n solutions, for n >= 0 (A353282); example: a(4) = 36 and 36 is the smallest number m such that equation S(x,y) = m has exactly 3 solutions: (9,1), (8,2), (5,5). - _Bernard Schott_, Apr 13 2022

%C a(n) is the square of the smallest integer having exactly n divisors (see formula with proof). - _Bernard Schott_, Oct 01 2022

%H Amiram Eldar, <a href="/A130279/b130279.txt">Table of n, a(n) for n = 1..100</a>

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/SmoothNumber.html">Smooth Number</a>

%F From _Bernard Schott_, Oct 01 2022: (Start)

%F a(n) = A005179(n)^2.

%F Proof: Suppose a(n) = Product p_i^(2*e_i), where the p_i are primes. Then the n square divisors are all of the form d = Product p_i^(2*k_i) with 0 <= k_i <= e_i. As a(n) = Product (p_i^e_i)^2 = (Product (p_i^e_i))^2, we get that sqrt(a(n)) = Product (p_i^e_i). This is the prime decomposition of sqrt(a(n)). As there is a bijection between prime factors p_i^(2*k_i) and (p_i^k_i), there is also bijection between square divisors of a(n) and divisors of sqrt(a(n)). We conclude that sqrt(a(n)) is the smallest integer that has exactly n divisors. (End)

%o (PARI) a(n) = my(k=1); while(sumdiv(k, d, issquare(d)) != n, k++); k; \\ _Michel Marcus_, Jul 15 2019

%Y Cf. A001221, A005179, A046951, A046952, A122375, A122376, A353282.

%Y Cf. A357450 (similar, but with odd squares divisors).

%K nonn

%O 1,2

%A _Reinhard Zumkeller_, May 20 2007

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 23 06:04 EDT 2024. Contains 371906 sequences. (Running on oeis4.)