A214834 a(n) is the smallest prime number such that both a(n) and (4n + 2) - a(n) are prime numbers of the form 4k + 3.
3, 3, 3, 7, 3, 3, 7, 3, 7, 11, 3, 3, 7, 11, 3, 7, 3, 3, 7, 3, 3, 7, 11, 19, 19, 3, 3, 7, 11, 19, 19, 3, 3, 7, 3, 7, 11, 3, 7, 11, 3, 3, 7, 11, 3, 7, 11, 3, 7, 3, 7, 11, 3, 7, 11, 3, 3, 7, 11, 3, 7, 11, 3, 7, 11, 3, 7, 3, 7, 11, 3, 7, 11, 47, 19, 23, 3, 3, 7, 11
Offset: 2
Examples
Let n = 4. Then 4n + 2 = 14, and the pairs of prime numbers of the form 4k + 3 that sum to 14 are (3, 11), (7, 7). The smallest number of 3, 11, 7, 8 is 3, so a(4) = 3.
Links
- Lei Zhou, Table of n, a(n) for n = 2..10000
Programs
-
Mathematica
s = 2; Table[s = s + 4; p1 = s + 1; While[p1 = p1 - 4; p2 = s - p1; !((PrimeQ[p1]) && (PrimeQ[p2]) && (Mod[p2, 4] == 3))]; p2, {i, 1, 80}]
Comments