A096932 Smallest number having exactly s divisors, where s is the n-th semiprime (A001358).
6, 12, 36, 48, 192, 144, 576, 3072, 1296, 12288, 9216, 196608, 5184, 786432, 36864, 12582912, 46656, 589824, 82944, 2359296, 805306368, 3221225472, 331776, 37748736, 206158430208, 746496, 3298534883328, 5308416, 13194139533312, 2415919104, 2985984, 9663676416
Offset: 1
Keywords
Links
- Amiram Eldar, Table of n, a(n) for n = 1..1000
Programs
-
Mathematica
s[n_] := Module[{f = FactorInteger[n], p, q}, If[Total[f[[;;,2]]] == 2, p=f[[1,1]]; q = n/p; 2^(q-1) * 3^(p-1) ,Nothing]]; Array[s, 100] (* Amiram Eldar, Apr 13 2024 *)
Comments