A096329 Prime(p^10) where p is the n-th prime.
8161, 733561, 174978379, 6065997263, 679646318387, 3851884421117, 61935696080369, 195412630499981, 1402090078377899, 15243760266373817, 30260601850590289, 186278471527230527, 534126386413471121, 870547653763149821, 2166779476441061129, 7419756995015118023
Offset: 1
Examples
2^10 = 125, prime(1024) = 8161.
Links
- Andrew Booker, Nth Prime Page.
Programs
-
Mathematica
Table[ Prime[ Prime[n]^10], {n, 7}] (* Robert G. Wilson v, Aug 07 2004 *)
-
PARI
a(n)=prime(prime(n)^10) \\ Charles R Greathouse IV, Nov 02 2014
Formula
a(n) ~ 10n^10 log^11 n. - Charles R Greathouse IV, Nov 02 2014
Extensions
Edited and extended by Robert G. Wilson v, Aug 07 2004
a(8)-a(16) from Charles R Greathouse IV, Nov 02 2014
Comments