A065091 Odd primes.
3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97, 101, 103, 107, 109, 113, 127, 131, 137, 139, 149, 151, 157, 163, 167, 173, 179, 181, 191, 193, 197, 199, 211, 223, 227, 229, 233, 239, 241, 251, 257, 263, 269, 271, 277
Offset: 1
References
- Paulo Ribenboim, The little book of big primes, Springer 1991, p. 106.
Links
- Ray Chandler, Table of n, a(n) for n = 1..10000 (first 1000 terms from Harry J. Smith)
- M. O. Rayes, V. Trevisan and P. S. Wang, Factorization of Chebyshev Polynomials, ICM Report, 1998.
- M. O. Rayes, V. Trevisan and P. S. Wang, Factorization of Chebyshev Polynomials, Computers & Mathematics with Applications, Volume 50, Issues 8-9, October-November 2005, Pages 1231-1240.
- Eric Weisstein's World of Mathematics, Prime Number.
Crossrefs
Programs
-
Haskell
a065091 n = a065091_list !! (n-1) a065091_list = tail a000040_list -- Reinhard Zumkeller, Jan 30 2012
-
Magma
[NthPrime(n): n in [2..100]]; // Vincenzo Librandi, Jun 21 2015
-
Maple
A065091 := proc(n) RETURN(ithprime(n+1)) end:
-
Mathematica
Prime[Range[2, 33]] (* Vladimir Joseph Stephan Orlovsky, Aug 22 2008 *)
-
PARI
forprime(p=3, 200, print1(p, ", ")) \\ Felix Fröhlich, Jun 30 2014
-
Python
from sympy import prime def A065091(n): return prime(n+1) # Chai Wah Wu, Jul 13 2024
-
Sage
def A065091_list(limit): # after Minác's formula f = 3; P = [f] for n in range(3, limit, 2): if (f+1)>n*(f//n)+1: P.append(n) f = f*n return P A065091_list(100) # Peter Luschny, Oct 17 2013
Formula
a(n) = A000040(n+1). - M. F. Hasler, Oct 26 2013
Extensions
More terms from Francisco Salinas (franciscodesalinas(AT)hotmail.com), Jan 05 2002
Edited (moved contributions from A000040 to here) by M. F. Hasler, Oct 26 2013
Comments