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.
%I A122565 #22 Jan 22 2020 06:13:50 %S A122565 5,7,17,19,29,31,41,43,101,103,137,139,149,151,197,199,269,271,281, %T A122565 283,461,463,521,523,569,571,617,619,641,643,809,811,821,823,857,859, %U A122565 881,883,1049,1051,1061,1063,1229,1231,1277,1279,1289,1291,1301,1303,1481 %N A122565 Twin primes of form 4k+1, 4k+3. %C A122565 Twin primes with Hamming distance 1 between them. - _Vladimir Shevelev_, Jan 29 2012 %H A122565 Amiram Eldar, <a href="/A122565/b122565.txt">Table of n, a(n) for n = 1..10000</a> %e A122565 a(3) = 17 = 4*4 + 1, a(4) = 19 = 4*4 + 3. %p A122565 i:=1:for k from 1 to 600 do if isprime(4*k+1) and isprime(4*k+3) then a[i]:=4*k+1:a[i+1]:=4*k+3: i:=i+2 fi od: seq(a[n],n=1..i-1); %t A122565 Flatten[Select[Table[4k+{1,3},{k,400}],And@@PrimeQ[#] &]] (* _Jayanta Basu_, May 26 2013 *) %Y A122565 Cf. A001097, A123986, A205649. %K A122565 nonn %O A122565 1,1 %A A122565 _Miklos Kristof_, Sep 21 2006