A098044 Odd primes p such that Pi_{3,1}(p) = Pi_{3,2}(p) - 1, where Pi_{m,n}(p) denotes the number of primes q <= p with q == n (mod m).
3, 7, 13, 19, 37, 43, 79, 163, 223, 229, 608981812891, 608981812951, 608981812993, 608981813507, 608981813621, 608981813819, 608981813837, 608981813861, 608981813929, 608981813941, 608981814019, 608981814143, 608981814247, 608981814823
Offset: 1
Keywords
Examples
There are five odd primes <= 37 of the form 3n+1. They are 7, 13, 19, 31, 37. There are five odd primes <= 37 of the form 3n+2. They are 5, 11, 17, 23, 29. Therefore 37 is a "break-even" point among the odd primes.
References
- P. Ribenboim, The New Book of Prime Number Records, Springer-Verlag, NY, 1995, page 274.
Links
- Donovan Johnson, Table of n, a(n) for n = 1..85509
Crossrefs
Cf. A007352.
Programs
-
Mathematica
p31 = p32 = 0; lst = {}; Do[p = Prime[n]; Switch[ Mod[p, 3], 1, p31++, 2, p32++ ]; If[ p31==p32, AppendTo[lst, p]], {n, 3, 10^7}]; lst (* Robert G. Wilson v, Sep 11 2004 *)
-
PARI
N=100; c=1; forprime(p=3,, if(p%3>1,c++,c--)||print1(p",")||N--||break) \\ Takes only ~1 second up to 1e8, but to see the next terms, beyond 6e11, replace p=3 with p=608981812891. - M. F. Hasler, May 10 2021
Extensions
Edited and extended by Robert G. Wilson v, Sep 11 2004
Initial entry 3 added by David Wasserman, Nov 07 2007
Edited and terms a(11) onward added by Max Alekseyev, Feb 09 2011
Comments