Article · Wikipedia archive · Last revised Jul 18, 2026

Formula for primes

In number theory, a formula for primes is a formula that outputs prime numbers. Such formulas for calculating primes do exist; however, they are computationally very slow, compared to a simple algorithm for prime-finding. A number of constraints are known, showing what such a "formula" can and cannot be.

Last revised
Jul 18, 2026
Read time
≈ 20 min
Length
4,620 w
Citations
33
Source

In number theory, a formula for primes is a formula that outputs prime numbers. Such formulas for calculating primes do exist; however, they are computationally very slow, compared to a simple algorithm for prime-finding. A number of constraints are known, showing what such a "formula" can and cannot be.

Formulas based on Wilson's theorem

A simple formula that produces all primes, albeit mostly interspersed by the prime number 2, is

f ( n ) = n ! mod ( n + 1 ) n ( n 1 ) + 2 {\displaystyle f(n)=\left\lfloor {\frac {n!{\bmod {(}}n+1)}{n}}\right\rfloor (n-1)+2}

for positive integer n {\displaystyle n} , where   {\displaystyle \lfloor \ \rfloor } is the floor function, which rounds down to the nearest integer. The first few values of the function are 2, 2, 3, 2, 5, 2, 7, 2, 2, 2, 11...1

The formula works because by Wilson's theorem, n + 1 {\displaystyle n+1} is prime if and only if n ! n ( mod n + 1 ) {\displaystyle n!\equiv n\!\!\!\!\!{\pmod {n+1}}} . Thus, when n + 1 {\displaystyle n+1} is prime, the first factor in the product becomes one, and the formula produces the prime number n + 1 {\displaystyle n+1} . But when n + 1 {\displaystyle n+1} is not prime, the first factor becomes zero and the formula produces the prime number 2.2 This formula is not an efficient way to generate prime numbers because evaluating n ! mod ( n + 1 ) {\displaystyle n!{\bmod {(}}n+1)} requires about n 1 {\displaystyle n-1} multiplications and reductions modulo n + 1 {\displaystyle n+1} .

In 1964, Willans gave the formula

p n = 1 + i = 1 2 n ( n j = 1 i ( cos ( j 1 ) ! + 1 j π ) 2 ) 1 / n {\displaystyle p_{n}=1+\sum _{i=1}^{2^{n}}\left\lfloor \left({\frac {n}{\sum _{j=1}^{i}\left\lfloor \left(\cos {\frac {(j-1)!+1}{j}}\pi \right)^{2}\right\rfloor }}\right)^{1/n}\right\rfloor }

for the n {\displaystyle n} th prime number p n {\displaystyle p_{n}} .3 This formula reduces to 45

p n = 1 + i = 1 2 n [ π ( i ) < n ] ; {\displaystyle p_{n}=1+\sum _{i=1}^{2^{n}}[\pi (i)<n];}

that is, it tautologically defines p n {\displaystyle p_{n}} as the smallest integer m {\displaystyle m} for which the prime-counting function π ( m ) {\displaystyle \pi (m)} is at least n {\displaystyle n} . This formula is also not efficient. In addition to the appearance of ( j 1 ) ! {\displaystyle (j-1)!} , it computes p n {\displaystyle p_{n}} by adding up p n {\displaystyle p_{n}} copies of 1 {\displaystyle 1} ; for example,

p 5 = 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 0 + 0 + + 0 = 11. {\displaystyle p_{5}=1+1+1+1+1+1+1+1+1+1+1+0+0+\dots +0=11.}

The articles What is an Answer? by Herbert Wilf (1982)6 and Formulas for Primes by Underwood Dudley (1983)7 have further discussion about the worthlessness of such formulas.

A shorter formula based on Wilson's theorem was given by J. P. Jones in 1975, using m o d {\displaystyle \mathrm {mod} } as a function:8

p n = i = 0 n 2 ( 1 ˙ ( ( j = 0 i ( j ˙ 1 ) ! 2 mod j ) ˙ n ) ) {\displaystyle p_{n}=\sum _{i=0}^{n^{2}}\left(1\mathop {\dot {-}} \left(\left(\sum _{j=0}^{i}(j\mathop {\dot {-}} 1)!^{2}{\bmod {j}}\right)\mathop {\dot {-}} n\right)\right)} .

Here, ˙ {\displaystyle \mathop {\dot {-}} } is the monus operator, defined as a ˙ b = max ( a b , 0 ) {\displaystyle a\mathbin {\dot {-}} b=\max(a-b,0)} , and x mod 0 {\displaystyle x{\bmod {0}}} is defined to be x {\displaystyle x} .

Recurrence relations for primes

Gandhi's formula

In 1971, J. M. Gandhi proved that p n = 1 log 2 ( s n 1 1 2 ) , {\displaystyle p_{n}=\left\lfloor 1-\log _{2}\left(s_{n-1}-{\frac {1}{2}}\right)\right\rfloor ,} where s n = d | p n # μ ( d ) 2 d 1 {\displaystyle s_{n}=\sum _{d|p_{n}\#}{\frac {\mu (d)}{2^{d}-1}}} , μ {\displaystyle \mu } is the Möbius function and d {\displaystyle d} runs through all divisors of p n # {\displaystyle p_{n}\#} , the primorial of p n {\displaystyle p_{n}} .91011 This formula should be seen as a recurrence relation for the prime numbers, expressing p n {\displaystyle p_{n}} in terms of p 1 , p 2 , , p n 1 {\displaystyle p_{1},p_{2},\dots ,p_{n-1}} .

This expression for s n {\displaystyle s_{n}} given by Gandhi results from an application of a modified Sieve of Eratosthenes operating on the exponents of the powers of 1 2 {\displaystyle {\frac {1}{2}}} in the sum k = 1 1 2 k {\displaystyle \sum _{k=1}^{\infty }{\frac {1}{2^{k}}}} after n {\displaystyle n} steps. More precisely, Gandhi showed that s n = 1 2 1 + 1 2 p n + 1 + {\displaystyle s_{n}={\frac {1}{2^{1}}}+{\frac {1}{2^{p_{n+1}}}}+\dots } , where the dots represent terms with increasing exponents greater than p n + 1 {\displaystyle p_{n+1}} .11 There are analog recurrences where the process is done in a base b {\displaystyle b} other than 2 {\displaystyle 2} .1213

In 2025, a simpler expression for s n {\displaystyle s_{n}} was published:

s n = { 1 2 p n # 1 i = 1 n 2 p n # 2 p n # / p i 2 p n # / p i 1 } {\displaystyle s_{n}=\left\{{\frac {1}{2^{p_{n}\#}-1}}\prod _{i=1}^{n}{\frac {2^{p_{n}\#}-2^{p_{n}\#/p_{i}}}{2^{p_{n}\#/p_{i}}-1}}\right\}} , where { x } {\displaystyle \{x\}} denotes the fractional part of x {\displaystyle x} .14

It is based on a more clever use of the Sieve of Eratosthenes through the Chinese remainder theorem.

Golomb's formula

Inspired by Gandhi's proof, Golomb proved the following recurrence12 p n = lim s ( ζ ( s ) k = 1 n 1 ( 1 p k s ) 1 ) 1 s , {\displaystyle p_{n}=\lim _{s\to \infty }\left(\zeta (s)\prod _{k=1}^{n-1}(1-p_{k}^{-s})-1\right)^{-{\frac {1}{s}}},} where ζ {\displaystyle \zeta } denotes the Riemann zeta function. It is based on the Euler product for ζ {\displaystyle \zeta } .

Prime-representing constants

The notion of continued fraction can be used to define the constant u 1 = [ p 1 , p 2 , p 3 , . . . ] = 2.31303673643... {\displaystyle u_{1}=[p_{1},p_{2},p_{3},...]=2.31303673643...} (sequence A064442 in the OEIS) from which we can recover the prime number sequence using the following recurrence relationship u n + 1 = ( u n u n ) 1 {\displaystyle u_{n+1}=(u_{n}-\lfloor u_{n}\rfloor )^{-1}} , and it follows that p n = u n {\displaystyle p_{n}=\lfloor u_{n}\rfloor } .

An alternative construction was given by Fridman et al.15. Given the constant f 1 = 2.920050977316 {\displaystyle f_{1}=2.920050977316\ldots } (sequence A249270 in the OEIS), for n 2 {\displaystyle n\geq 2} , define the sequence f n = f n 1 ( f n 1 f n 1 + 1 ) {\displaystyle f_{n}=\lfloor f_{n-1}\rfloor (f_{n-1}-\lfloor f_{n-1}\rfloor +1)} where   {\displaystyle \left\lfloor \ \right\rfloor } is the floor function. Then for n 1 {\displaystyle n\geq 1} , p n = f n {\displaystyle p_{n}=\lfloor f_{n}\rfloor } . The initial constant f 1 = 2.920050977316 {\displaystyle f_{1}=2.920050977316} given in the article is precise enough for equation (1) to generate the primes through 37, the twelfth prime.

The exact value of f 1 {\displaystyle f_{1}} that generates all primes is given by the rapidly-converging series

f 1 = n = 1 p n 1 p n 1 # = 2 1 1 + 3 1 2 + 5 1 2 3 + 7 1 2 3 5 + , {\displaystyle f_{1}=\sum _{n=1}^{\infty }{\frac {p_{n}-1}{p_{n-1}\#}}={\frac {2-1}{1}}+{\frac {3-1}{2}}+{\frac {5-1}{2\cdot 3}}+{\frac {7-1}{2\cdot 3\cdot 5}}+\cdots ,}

The more digits of f 1 {\displaystyle f_{1}} that we know, the more primes equation (1) will generate. For example, we can use 25 terms in the series, using the 25 primes less than 100, to calculate the following more precise approximation:

f 1 2.920050977316134712092562917112019. {\displaystyle f_{1}\simeq 2.920050977316134712092562917112019.}

This has enough digits for equation (1) to yield again the 25 primes less than 100.

Mills' formula

The first such formula known was established by W. H. Mills (1947), who proved that there exists a real number A such that, if

d n = A 3 n {\displaystyle d_{n}=A^{3^{n}}}

then

d n = A 3 n {\displaystyle \left\lfloor d_{n}\right\rfloor =\left\lfloor A^{3^{n}}\right\rfloor }

is a prime number for all positive integers n {\displaystyle n} .16 If the Riemann hypothesis is true, then the smallest such A {\displaystyle A} has a value of around 1.3063778838630806904686144926... (sequence A051021 in the OEIS) and is known as Mills' constant.17 This value gives rise to the primes d 1 = 2 {\displaystyle \lfloor d_{1}\rfloor =2} , d 2 = 11 {\displaystyle \lfloor d_{2}\rfloor =11} , d 3 = 1361 {\displaystyle \lfloor d_{3}\rfloor =1361} , ... (sequence A051254 in the OEIS). Very little is known about the constant A {\displaystyle A} . This formula has no practical value, because there is no known way of calculating the constant without finding primes in the first place.

There is nothing special about the floor function in the formula. Tóth proved that there also exists a constant B {\displaystyle B} such that

B r n {\displaystyle \left\lceil B^{r^{n}}\right\rceil }

is also prime-representing for r > 2.106 {\displaystyle r>2.106\ldots } .18

In the case r = 3 {\displaystyle r=3} , the value of the constant B {\displaystyle B} begins with 1.24055470525201424067... The first few primes generated are:

2 , 7 , 337 , 38272739 , 56062005704198360319209 , {\displaystyle 2,7,337,38272739,56062005704198360319209,}
176199995814327287356671209104585864397055039072110696028654438846269 , {\displaystyle 176199995814327287356671209104585864397055039072110696028654438846269,\ldots }

Without assuming the Riemann hypothesis, Elsholtz developed several prime-representing functions similar to those of Mills. For example, if A = 1.00536773279814724017 {\displaystyle A=1.00536773279814724017\ldots } , then A 10 10 n {\displaystyle \left\lfloor A^{10^{10n}}\right\rfloor } is prime for all positive integers n {\displaystyle n} . Similarly, if A = 3.8249998073439146171615551375 {\displaystyle A=3.8249998073439146171615551375\ldots } , then A 3 13 n {\displaystyle \left\lfloor A^{3^{13n}}\right\rfloor } is prime for all positive integers n {\displaystyle n} .19

Wright's formula

A tetrationally growing prime-generating formula similar to Mills' comes from a theorem of E. M. Wright. He proved that there exists a real number α such that, if

g 0 = α {\displaystyle g_{0}=\alpha } and
g n + 1 = 2 g n {\displaystyle g_{n+1}=2^{g_{n}}} for n 0 {\displaystyle n\geq 0} ,

then

g n = 2 2 2 α {\displaystyle \lfloor g_{n}\rfloor =\left\lfloor 2^{\dots ^{2^{2^{\alpha }}}}\right\rfloor }

is prime for all n 1 {\displaystyle n\geq 1} .20 Wright gives the first seven decimal places of such a constant: α = 1.9287800 {\displaystyle \alpha =1.9287800} . This value gives rise to the primes g 1 = 2 α = 3 {\displaystyle \lfloor g_{1}\rfloor =\lfloor 2^{\alpha }\rfloor =3} , g 2 = 13 {\displaystyle \lfloor g_{2}\rfloor =13} , and g 3 = 16381 {\displaystyle \lfloor g_{3}\rfloor =16381} . g 4 {\displaystyle \lfloor g_{4}\rfloor } is even, and so is not prime. However, with α = 1.9287800 + 8.2843 10 4933 {\displaystyle \alpha =1.9287800+8.2843\cdot 10^{-4933}} , g 1 {\displaystyle \lfloor g_{1}\rfloor } , g 2 {\displaystyle \lfloor g_{2}\rfloor } , and g 3 {\displaystyle \lfloor g_{3}\rfloor } are unchanged, while g 4 {\displaystyle \lfloor g_{4}\rfloor } is a prime with 4932 digits.21 This sequence of primes cannot be extended beyond g 4 {\displaystyle \lfloor g_{4}\rfloor } without knowing more digits of α {\displaystyle \alpha } . Like Mills' formula, and for the same reasons, Wright's formula cannot be used to find primes.

Plouffe's formulas

In 2018 Simon Plouffe conjectured a set of formulas for primes. Similarly to the formula of Mills, they are of the form

{ a 0 r n } {\displaystyle \left\{a_{0}^{r^{n}}\right\}}

where {   } {\displaystyle \{\ \}} is the function rounding to the nearest integer. For example, with a 0 43.80468771580293481 {\displaystyle a_{0}\approx 43.80468771580293481} and r = 5 / 4 {\displaystyle r=5/4} , this gives 113, 367, 1607, 10177, 102217... (sequence A323176 in the OEIS). Using a 0 = 10 500 + 961 + ε {\displaystyle a_{0}=10^{500}+961+\varepsilon } and r = 1.01 {\displaystyle r=1.01} with ε {\displaystyle \varepsilon } a certain number between 0 and one half, Plouffe found that he could generate a sequence of 50 probable primes (with high probability of being prime). Presumably there exists an ε such that this formula will give an infinite sequence of actual prime numbers. The number of digits starts at 501 and increases by about 1% each time.2223

Prime formulas and polynomial functions

It is known that no non-constant polynomial function P(n) with integer coefficients exists that evaluates to a prime number for all integers n. The proof is as follows: suppose that such a polynomial existed. Then P(1) would evaluate to a prime p, so P ( 1 ) 0 ( mod p ) {\displaystyle P(1)\equiv 0{\pmod {p}}} . But for any integer k, P ( 1 + k p ) 0 ( mod p ) {\displaystyle P(1+kp)\equiv 0{\pmod {p}}} also, so P ( 1 + k p ) {\displaystyle P(1+kp)} cannot also be prime (as it would be divisible by p) unless it were p itself. But the only way P ( 1 + k p ) = P ( 1 ) = p {\displaystyle P(1+kp)=P(1)=p} for all k is if the polynomial function is constant. The same reasoning shows an even stronger result: no non-constant polynomial function P(n) exists that evaluates to a prime number for almost all integers n.

Euler first noticed (in 1772) that the quadratic polynomial

P ( n ) = n 2 + n + 41 {\displaystyle P(n)=n^{2}+n+41}

is prime for the 40 integers n = 0 , 1 , 2 , , 39 {\displaystyle n=0,1,2,\dots ,39} with corresponding primes 41 , 43 , 47 , 53 , 61 , 71 , , 1601 {\displaystyle 41,43,47,53,61,71,\dots ,1601} . The differences between the terms are 2 , 4 , 6 , 8 , 10 {\displaystyle 2,4,6,8,10\dots } For n = 40 {\displaystyle n=40} , it produces a square number, 1681 {\displaystyle 1681} , which is equal to 41 × 41 {\displaystyle 41\times 41} , the smallest composite number for this formula for n 0 {\displaystyle n\geq 0} . If 41 {\displaystyle 41} divides n {\displaystyle n} , it divides P ( n ) {\displaystyle P(n)} too. Furthermore, since P ( n ) {\displaystyle P(n)} can be written as n ( n + 1 ) + 41 {\displaystyle n(n+1)+41} , if 41 {\displaystyle 41} divides n + 1 {\displaystyle n+1} instead, it also divides P ( n ) {\displaystyle P(n)} . The phenomenon is related to the Ulam spiral, which is also implicitly quadratic, and the class number; this polynomial is related to the Heegner number 163 = 4 41 1 {\displaystyle 163=4\cdot 41-1} . There are analogous polynomials for p = 2 , 3 , 5 , 11  and  17 {\displaystyle p=2,3,5,11{\text{ and }}17} (the lucky numbers of Euler), corresponding to other Heegner numbers.

Given a positive integer S {\displaystyle S} , there may be infinitely many c {\displaystyle c} such that the expression n 2 + n + c {\displaystyle n^{2}+n+c} is always coprime to S {\displaystyle S} . The integer c {\displaystyle c} may be negative, in which case there is a delay before primes are produced.

Similarly, other polynomials (of higher degree) produces finite sequences of prime numbers.24 In 2010, Dress and Landreau found the following polynomial representing a record-breaking 58 primes at consecutive values:2526 Q ( n ) = 1 72 n 6 5 24 n 5 1493 72 n 4 + 1027 8 n 3 + 100471 18 n 2 11971 6 n 57347 {\displaystyle Q(n)={\frac {1}{72}}n^{6}-{\frac {5}{24}}n^{5}-{\frac {1493}{72}}n^{4}+{\frac {1027}{8}}n^{3}+{\frac {100471}{18}}n^{2}-{\frac {11971}{6}}n-57347} More precisely, | Q ( n ) | {\displaystyle |Q(n)|} is prime for n {\displaystyle n} ranging from -42 to 15.

It is known, based on Dirichlet's theorem on arithmetic progressions, that linear polynomial functions L ( n ) = a n + b {\displaystyle L(n)=an+b} produce infinitely many primes as long as a {\displaystyle a} and b {\displaystyle b} are relatively prime (though no such function will assume prime values for all values of n {\displaystyle n} ). Moreover, the Green–Tao theorem says that for any k {\displaystyle k} there exists a pair of a and b, with the property that L ( n ) = a n + b {\displaystyle L(n)=an+b} is prime for any n {\displaystyle n} from 0 through k 1 {\displaystyle k-1} . However, as of 2020, the best known result of such type is for k = 27 {\displaystyle k=27} :

224584605939537911 + 18135696597948930 n {\displaystyle 224584605939537911+18135696597948930n}

is prime for all n {\displaystyle n} from 0 through 26.27 It is not even known whether there exists a univariate polynomial of degree at least 2, that assumes an infinite number of values that are prime; see Bunyakovsky conjecture.

Rowland's prime-generating sequence

Another prime generator is defined by the recurrence relation

a n = a n 1 + gcd ( n , a n 1 ) , a 1 = 7 , {\displaystyle a_{n}=a_{n-1}+\gcd(n,a_{n-1}),\quad a_{1}=7,}

where gcd {\displaystyle \gcd } denotes the greatest common divisor function. The sequence of differences a n + 1 a n {\displaystyle a_{n+1}-a_{n}} starts with 1, 1, 1, 5, 3, 1, 1, 1, 1, 11, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 47, 3, 1, 5, 3, ... (sequence A132199 in the OEIS). Rowland (2008) proved that this sequence contains only ones and prime numbers. However, it does not contain all the prime numbers, since the terms gcd ( n + 1 , a n ) {\displaystyle \gcd(n+1,a_{n})} are always odd and so never equal to 2. The same paper conjectures that the sequence contains all odd primes: in fact, 587 is the smallest odd prime not appearing in the first 10,000 outcomes different from 1.28

This recurrence is rather inefficient. In perspective, it is trivial to write an algorithm to generate all prime numbers (from the definition), and many more efficient algorithms are known. Thus, such recurrence relations are more a matter of curiosity than of practical use.

Prime-describing system of Diophantine equations

Because the set of primes is a computably enumerable set, by Matiyasevich's theorem, it can be obtained from a system of Diophantine equations. Jones et al. (1976) found an explicit set of 14 Diophantine equations in 26 variables a , b , . . . , z {\displaystyle a,b,...,z} , such that a given number k + 2 {\displaystyle k+2} is prime if and only if that system has a solution in nonnegative integers:29

α 0 = w z + h + j q = 0 α 1 = ( g k + 2 g + k + 1 ) ( h + j ) + h z = 0 α 2 = 16 ( k + 1 ) 3 ( k + 2 ) ( n + 1 ) 2 + 1 f 2 = 0 α 3 = 2 n + p + q + z e = 0 α 4 = e 3 ( e + 2 ) ( a + 1 ) 2 + 1 o 2 = 0 α 5 = ( a 2 1 ) y 2 + 1 x 2 = 0 α 6 = 16 r 2 y 4 ( a 2 1 ) + 1 u 2 = 0 α 7 = n + + v y = 0 α 8 = ( a 2 1 ) 2 + 1 m 2 = 0 α 9 = a i + k + 1 i = 0 α 10 = ( ( a + u 2 ( u 2 a ) ) 2 1 ) ( n + 4 d y ) 2 + 1 ( x + c u ) 2 = 0 α 11 = p + ( a n 1 ) + b ( 2 a n + 2 a n 2 2 n 2 ) m = 0 α 12 = q + y ( a p 1 ) + s ( 2 a p + 2 a p 2 2 p 2 ) x = 0 α 13 = z + p ( a p ) + t ( 2 a p p 2 1 ) p m = 0 {\displaystyle {\begin{aligned}\alpha _{0}&=wz+h+j-q=0\\\alpha _{1}&=(gk+2g+k+1)(h+j)+h-z=0\\\alpha _{2}&=16(k+1)^{3}(k+2)(n+1)^{2}+1-f^{2}=0\\\alpha _{3}&=2n+p+q+z-e=0\\\alpha _{4}&=e^{3}(e+2)(a+1)^{2}+1-o^{2}=0\\\alpha _{5}&=(a^{2}-1)y^{2}+1-x^{2}=0\\\alpha _{6}&=16r^{2}y^{4}(a^{2}-1)+1-u^{2}=0\\\alpha _{7}&=n+\ell +v-y=0\\\alpha _{8}&=(a^{2}-1)\ell ^{2}+1-m^{2}=0\\\alpha _{9}&=ai+k+1-\ell -i=0\\\alpha _{10}&=((a+u^{2}(u^{2}-a))^{2}-1)(n+4dy)^{2}+1-(x+cu)^{2}=0\\\alpha _{11}&=p+\ell (a-n-1)+b(2an+2a-n^{2}-2n-2)-m=0\\\alpha _{12}&=q+y(a-p-1)+s(2ap+2a-p^{2}-2p-2)-x=0\\\alpha _{13}&=z+p\ell (a-p)+t(2ap-p^{2}-1)-pm=0\end{aligned}}}

The 14 equations α 0 , , α 13 {\displaystyle \alpha _{0},\dots ,\alpha _{13}} can be used to produce a prime-generating polynomial inequality in 26 variables:

( k + 2 ) ( 1 α 0 2 α 1 2 α 13 2 ) > 0 {\displaystyle (k+2)(1-\alpha _{0}^{2}-\alpha _{1}^{2}-\cdots -\alpha _{13}^{2})>0}

is a polynomial inequality in 26 variables, and the set of prime numbers is identical to the set of positive values taken on by the left-hand side as the variables a , b , . . . , z {\displaystyle a,b,...,z} range over the nonnegative integers.

A general theorem of Matiyasevich says that if a set is defined by a system of Diophantine equations, it can also be defined by a system of Diophantine equations in only 9 variables.30 Hence, there is a prime-generating polynomial inequality as above with only 10 variables. However, its degree is large (in the order of 1045). On the other hand, there also exists such a set of equations of degree only 4, but in 58 variables.31

See also

See also

Notes

Notes

  1. Sloane, N. J. A. (ed.). "Sequence A118136 (Prime generating formula based on Wilson's theorem)". The On-Line Encyclopedia of Integer Sequences. OEIS Foundation.
  2. Mackinnon 1987.
  3. Willans 1964.
  4. Neill & Singer 1965.
  5. Goodstein & Wormell 1967.
  6. Wilf 1982.
  7. Dudley 1983.
  8. Jones 1975.
  9. J. M. Gandhi, Formulae for the nth prime, Proceedings of the Washington State University Conference on Number Theory 96–107, Washington State University, Pullman, WA, 1971.
  10. Eynden, Charles Vanden (1972). "A Proof of Gandhi's Formula for the n th Prime". The American Mathematical Monthly. 79 (6): 625. doi:10.1080/00029890.1972.11993098. ISSN 0002-9890.
  11. Golomb, S. W. (1974). "A Direct Interpretation of Gandhi's Formula". The American Mathematical Monthly. 81 (7): 752–754. doi:10.1080/00029890.1974.11993659. ISSN 0002-9890.
  12. Golomb, Solomon (1 April 1976). "Formulas for the next prime". Pacific Journal of Mathematics. 63 (2): 401–404. doi:10.2140/pjm.1976.63.401. ISSN 0030-8730.
  13. Jakimczuk, Rafael (26 August 2024). "Generalizations of the Gandhi formula for prime numbers". Elemente der Mathematik. 80 (4): 166–169. doi:10.4171/em/537. ISSN 0013-6018.
  14. Tréfeu, Eric. "une jolie récurrence pour les nombres premiers". Quadrature (137): 41–44.
  15. Fridman et al. 2019.
  16. Mills 1947.
  17. Caldwell & Cheng 2005.
  18. Tóth 2017.
  19. Elsholtz 2020.
  20. Wright 1951.
  21. Baillie 2017.
  22. Steckles 2019.
  23. Plouffe (2019) As of January 2019, the number he gives in the appendix for the 50th number generated is actually the 48th.
  24. Francois, Dress; Bernard, Landreau (28 February 2014). "Polynômes de degré supérieur à 2 prenant beaucoup de valeurs premières". arXiv:1402.7312 [math.NT].
  25. David Larousserie (23 September 2010). "Nouvelle suite record pour les nombres premiers". Sciences et Avenir. Retrieved 4 May 2018..
  26. Plouffe, Simon (7 April 2022). "A set of formulas for primes". arXiv:1901.01849 [math.NT].
  27. PrimeGrid, "PrimeGrid's AP27 Search, Official announcement" (PDF), PrimeGrid, retrieved 2 August 2025 The AP27 is listed in "Jens Kruse Andersen's Primes in Arithmetic Progression Records page"
  28. Rowland 2008.
  29. Jones et al. 1976.
  30. Matiyasevich 1999.
  31. Jones 1982.
References

References

  • Jones, James P. (1975), "Formula for the n {\displaystyle n} th prime number", Canadian Mathematical Bulletin, 18 (3): 433–434, doi:10.4153/CMB-1975-081-7
  • Prunescu, Mihai; Sauras-Altuzarra, Lorenzo (2024), "An Arithmetic Term for the Factorial Function", Examples and Counterexamples, 5 100136, doi:10.1016/j.exco.2024.100136
  • Prunescu, Mihai; Shunia, Joseph M (19 December 2024), "On arithmetic terms expressing the prime-counting function and the n-th prime", arXiv:2412.14594v1 [math.NT]
Further reading

Further reading

  • Regimbal, Stephen (1975), "An explicit Formula for the k-th prime number", Mathematics Magazine, 48 (4), Mathematical Association of America: 230–232, doi:10.2307/2690354, JSTOR 2690354
  • Venugopalan, A (September 1983), "Formula for primes, twinprimes, number of primes and number of twinprimes", Proceedings of the Indian Academy of Sciences—Mathematical Sciences, 92 (1): 49–52, doi:10.1007/BF02866907 (errata)
External links