A055875 a(0)=1, a(n) = prime(n^3).
1, 2, 19, 103, 311, 691, 1321, 2309, 3671, 5519, 7919, 10957, 14753, 19403, 24809, 31319, 38873, 47657, 57559, 69031, 81799, 96137, 112291, 130073, 149717, 171529, 195043, 220861, 248851, 279431, 312583, 347707, 386093, 427169, 470933, 517553
Offset: 0
Keywords
Links
- David A. Corneth, Table of n, a(n) for n = 0..2200 (first 1001 terms from Ivan Panchenko)
- Index entries for sequences related to sorting
- Andrew Booker, Nth Prime Page.
Crossrefs
Programs
-
Magma
[NthPrime(n^3): n in [0..50] ]; // Vincenzo Librandi, Apr 22 2011
-
Mathematica
{1}~Join~Array[Prime[#^3] &, 35] (* Michael De Vlieger, Apr 13 2021 *)
-
PARI
first(n) = { my(res = vector(n), t = 0); forprime(p = 2, oo, t++; if(ispower(t, 3, &i), print1([i, p]", "); res[i] = p; if(i >= n, return(concat(1, res))))) } \\ David A. Corneth, Apr 13 2021
Extensions
More terms from Jonathan Vos Post, Aug 13 2005
Comments