cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A129480 a(n) = Prime(17*n).

Original entry on oeis.org

59, 139, 233, 337, 439, 557, 653, 769, 883, 1013, 1117, 1249, 1381, 1493, 1613, 1747, 1879, 2017, 2141, 2287, 2399, 2551, 2689, 2801, 2953, 3089, 3253, 3373, 3529, 3643, 3793, 3923, 4073, 4219, 4357, 4513, 4651, 4799, 4957, 5087, 5237, 5413, 5527, 5683
Offset: 1

Views

Author

Cino Hilliard, May 29 2007

Keywords

Examples

			The 17th prime is 59.
		

Crossrefs

Cf. similar sequences listed in A031336.
Cf. A129484.

Programs

  • Magma
    [NthPrime(17*n): n in [1..100]]; // G. C. Greubel, Feb 12 2024
  • Maple
    seq(ithprime(17*i),i=1..100); # Robert Israel, Sep 08 2014
  • Mathematica
    Prime[17*Range[1, 100]] (* G. C. Greubel, Feb 12 2024 *)
  • PARI
    cicada(n) = forstep(x=17,n,17,print1(prime2(x)","))
    
  • PARI
    a(n)=prime(17*n) \\ Edward Jiang, Sep 08 2014
    
  • Sage
    [nth_prime(17*n) for n in (1..50)] # Bruno Berselli, May 07 2014