OFFSET
1,1
COMMENTS
This is to smallest integer for which the number of divisors is the n-th prime (A061286) as semiprimes (A001358) are to primes (A000040). - Jonathan Vos Post, Feb 03 2011
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..1000
FORMULA
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 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Jul 15 2004
STATUS
approved