OFFSET
1,1
COMMENTS
Also, 66th powers of primes.
More generally, the n-th number with p divisors is equal to the n-th prime raised to power p-1, where p is prime. In this case, p = 67.
LINKS
EXAMPLE
a(1) = 2^66, a(2) = 3^66, a(3) = 5^66, a(4) = 7^66, a(5) = 11^66.
MATHEMATICA
Array[Prime[#]^66 &, {5}] (* Michael De Vlieger, Dec 31 2016 *)
PROG
(PARI) a(n)=prime(n)^66
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Omar E. Pol, Dec 31 2016
STATUS
approved