A350541 Twin primes x, represented by their average, such that x is the first and x+18 the last of three successive twins.
12, 180, 810, 5640, 9420, 18042, 62970, 88800, 97842, 109830, 165702, 284730, 392262, 452520, 626610, 663570, 663582, 855720, 983430, 1002342, 1003350, 1068702, 1146780, 1155612, 1322160, 1329702, 1592862, 1678752, 1718862, 1748472, 2116560, 2144490
Offset: 1
Keywords
Examples
Triples of twins Example 6-tuple of primes (x,x+ 6,x+18) x= 12 (11,13,17,19,29,31) (x,x+12,x+18) x=180 (179,181,191,193,197,199)
Links
- Gerhard Kirchner, Test of the k-tuple conjecture
- Eric Weisstein's World of Mathematics, k-tuple conjecture.
Programs
-
Mathematica
Select[Prime@Range[4,160000],Count[Range[#,#+18],?(PrimeQ@#&&PrimeQ[#+2]&)]==3&]+1 (* _Giorgos Kalogeropoulos, Jan 07 2022 *)
-
Maxima
block(twin:[], n:0, p1:11, j2:1, nmax: 3, /*returns nmax terms*/ m:3, d:18, w: makelist(-d,i,1,m), while n
Comments