OFFSET
1,1
COMMENTS
Also, 96th 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 = 97.
LINKS
EXAMPLE
a(1) = 2^96, a(2) = 3^96, a(3) = 5^96, a(4) = 7^96, a(5) = 11^96.
MATHEMATICA
With[{p = 25}, Table[Prime[n]^(Prime[p] - 1), {n, 5}]] (* Michael De Vlieger, Jan 02 2017 *)
PROG
(PARI) a(n)=prime(n)^96
(Magma) [NthPrime(n)^96: n in [1..5]]; // Vincenzo Librandi, Jan 06 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Omar E. Pol, Jan 02 2017
STATUS
approved