OFFSET
1,1
COMMENTS
Also, 78th 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 = 79.
LINKS
EXAMPLE
a(1) = 2^78, a(2) = 3^78, a(3) = 5^78, a(4) = 7^78, a(5) = 11^78.
MATHEMATICA
With[{p = 22}, Table[Prime[n]^(Prime@ p - 1), {n, 5}]] (* Michael De Vlieger, Jan 01 2017 *)
PROG
(PARI) a(n)=prime(n)^78
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Omar E. Pol, Jan 01 2017
STATUS
approved