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