A079296 Primes ordered by decreasing value of the function p -> sqrt(q) - sqrt(p) where q is the next prime after p.
7, 113, 23, 13, 31, 3, 1327, 19, 47, 199, 139, 89, 5, 211, 293, 53, 523, 317, 61, 181, 73, 887, 1129, 83, 37, 241, 2, 43, 283, 1669, 11, 467, 1069, 337, 509, 2477, 131, 2179, 2971, 1259, 773, 1951, 1637, 409, 3271, 421, 151, 1381, 67, 839, 619, 863, 157, 17, 661, 3137
Offset: 1
Links
- Donovan Johnson, Table of n, a(n) for n = 1..10000
- C. K. Caldwell, Gaps between primes.
- Eric W. Weisstein, Andrica's Conjecture
- Wikipedia, Andrica's conjecture
- Marek Wolf, A note on the Andrica conjecture, arXiv:1010.3945 [math.NT], 2010.
Programs
-
Mathematica
lim = 1/5; lst = {}; p = 2; q = 3; While[p < 50000, If[ Sqrt[q] - Sqrt[p] > lim, AppendTo[lst, {p, Sqrt[q] - Sqrt[p]}]]; p = q; q = NextPrime[q]]; First@ Transpose@ Sort[lst, #1[[2]] > #2[[2]] &] (* Robert G. Wilson v, Oct 18 2012 *)
Extensions
More terms from Robert G. Wilson v, Oct 18 2012
Comments