login

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”).

A128383
List of triples of primes with common difference 24.
0
16763, 16787, 16811, 40039, 40063, 40087, 42509, 42533, 42557, 96353, 96377, 96401, 98573, 98597, 98621, 104183, 104207, 104231, 119243, 119267, 119291, 123863, 123887, 123911, 160093, 160117, 160141, 161783, 161807, 161831, 169259
OFFSET
1,1
COMMENTS
16763, 16787, 16811 16763+24=16787, 16787+24=16811 etc...
MAPLE
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; #
MATHEMATICA
Flatten[Select[Partition[Prime[Range[16000]], 3, 1], Differences[#] == {24, 24}&]] (* Harvey P. Dale, Feb 03 2012 *)
CROSSREFS
Sequence in context: A365813 A202896 A183727 * A052190 A068784 A183844
KEYWORD
nonn,tabf
AUTHOR
Zerinvary Lajos, May 04 2007
STATUS
approved