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 Apr 03 2023 10:36:11
%S 11,13,41,43,71,73,101,103,191,193,281,283,311,313,431,433,461,463,
%T 521,523,641,643,821,823,881,883,1031,1033,1061,1063,1091,1093,1151,
%U 1153,1301,1303,1451,1453,1481,1483,1721,1723,1871,1873
%N Twin primes congruent to {11, 13} mod 30.
%H Vincenzo Librandi, <a href="/A132241/b132241.txt">Table of n, a(n) for n = 1..1000</a>
%H C. K. Caldwell, <a href="http://primes.utm.edu">The Prime Pages</a>.
%H C. K. Caldwell, <a href="https://t5k.org/glossary/page.php?sort=TwinPrime">Twin Primes</a>.
%t a[0]=1;a[n_]:=a[n]=a[n-1]+10;Flatten[Table[If[PrimeQ[a[n]]&&PrimeQ[a[n]+2],{a[n],a[n]+2},{}],{n,0,200}]] (* _Vincenzo Librandi_, Aug 15 2012 °)
%Y Cf. A000040, A001097, A001359, A006512, A039949, A068231.
%K easy,nonn
%O 1,1
%A _Omar E. Pol_, Aug 15 2007