cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

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.

This page as a plain text file.
%I A214834 #17 Mar 13 2013 13:24:04
%S A214834 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,
%T A214834 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,
%U A214834 7,11,3,7,11,3,7,3,7,11,3,7,11,47,19,23,3,3,7,11
%N 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.
%C A214834 Any even number of the form of 4k + 2 (k > 0) can be partitioned into 4k + 2 = (4i+3) + (4j+3), where i + j + 1 = k.  This sequence implies the conjecture that for any number in the form of 4k + 2 (k > 0), there is a partition for which 4i + 3 and 4j + 3 are both prime.
%C A214834 Conjecture tested true up to n=1000000000. In case the conjecture is not true, zero could be used to represent the missing entries.
%H A214834 Lei Zhou, <a href="/A214834/b214834.txt">Table of n, a(n) for n = 2..10000</a>
%e A214834 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.
%t A214834 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}]
%Y A214834 Cf. A005843, A008586, A016825, A000040, A002145.
%K A214834 nonn,easy
%O A214834 2,1
%A A214834 _Lei Zhou_, Mar 07 2013