Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I #9 Dec 20 2019 11:15:41
%S 29,137,317,3593,11657,19037,36857,51977,57593,72893,272477,324893,
%T 381917,412157,435593,1065017,1127837,1633277,1742393,2214137,2782217,
%U 2883197,3504377,3802493,3991997,4112777,4460537,4536893,7064957,7354937,7851197,8999993,9734393
%N Primes of the form A037074(k) - 6, where A037074(k) is a twin prime product.
%H Amiram Eldar, <a href="/A162834/b162834.txt">Table of n, a(n) for n = 1..10000</a>
%t seq={}; Do[If[PrimeQ[n] && PrimeQ[n+2] && PrimeQ[(m = n^2 + 2n - 6)], AppendTo[seq, m]], {n, 1, 1000}]; seq (* _Amiram Eldar_, Dec 20 2019 *)
%Y Cf. A037074.
%Y Cf. A099775. - _R. J. Mathar_, Jul 19 2009
%K nonn
%O 1,1
%A _Giovanni Teofilatto_, Jul 14 2009
%E Definition corrected and more terms added by _R. J. Mathar_, Jul 19 2009
%E More terms from _Amiram Eldar_, Dec 20 2019