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 A095969 #6 Sep 08 2022 08:45:14 %S A095969 4,6,12,25,27,29,48,63,88,93,134,147,149,151,153,181,211,224,235,247, %T A095969 249,285,301,389,433,483,612,642,694,742,877,975,994,1037,1039,1080, %U A095969 1094,1153,1276,1278,1301,1380,1395,1439,1474,1563,1580,1617,1638,1688 %N A095969 If p(k) is the k-th prime, then the n-th set of 2 consecutive cousin prime pairs starts at p(a(n)). %e A095969 a(2)=6: p(6)=13 and p(7)=17, the first cousin prime pair, p(8)=19 and p(9)=23, the second cousin prime pair. %t A095969 n=0 Do[If[Prime[k + 1] - Prime[k]==4&&Prime[k + 3] - Prime[k + 2]==4, n = n + 1; Print[n, " ", k]], {k, 1, 1700}] (* _Vincenzo Librandi_, Jul 03 2015 *) %o A095969 (Magma) [n: n in [1..2000] | NthPrime(n+1)-NthPrime(n) eq 4 and NthPrime(n+3)-NthPrime(n+2) eq 4]; // _Vincenzo Librandi_, Jul 03 2015 %K A095969 nonn %O A095969 1,1 %A A095969 _Ray G. Opao_, Jul 15 2004