login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A280350
Numbers with 97 divisors.
0
79228162514264337593543950336, 6362685441135942358474828762538534230890216321, 12621774483536188886587657044524579674771302961744368076324462890625, 1347137238494276547832006567721872890819326613454654477690085519113574118965817601, 9412343651268540526001186511911506574868063110469548823950876000379062365652829504091329792873336961
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.
FORMULA
a(n) = A000040(n)^(97-1) = A000040(n)^96.
A000005(a(n)) = 97.
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
KEYWORD
nonn,easy
AUTHOR
Omar E. Pol, Jan 02 2017
STATUS
approved