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 #6 Jan 19 2019 04:14:58
%S 16763,16787,16811,40039,40063,40087,42509,42533,42557,96353,96377,
%T 96401,98573,98597,98621,104183,104207,104231,119243,119267,119291,
%U 123863,123887,123911,160093,160117,160141,161783,161807,161831,169259
%N List of triples of primes with common difference 24.
%C 16763, 16787, 16811 16763+24=16787, 16787+24=16811 etc...
%p for i from 1 by 1 to 20000 do > if ithprime(i+1) = ithprime(i) +24 and ithprime(i+2) = ithprime(i) + 48 then print(ithprime(i),ithprime(i+1),ithprime(i+2)); > fi; > od;#
%t Flatten[Select[Partition[Prime[Range[16000]],3,1],Differences[#] == {24,24}&]] (* _Harvey P. Dale_, Feb 03 2012 *)
%K nonn,tabf
%O 1,1
%A _Zerinvary Lajos_, May 04 2007