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

A350856
Initial members of prime triples (p, p+2, p+14).
0
3, 5, 17, 29, 59, 137, 149, 179, 197, 227, 269, 419, 599, 617, 659, 809, 1019, 1049, 1277, 1289, 1607, 1787, 1997, 2129, 2237, 2267, 2657, 2789, 3167, 3257, 3299, 3329, 3359, 3527, 3557, 3917, 3929, 4217, 4229, 4259, 4547, 4637, 4649, 4787, 4799, 5009, 5099
OFFSET
1,1
COMMENTS
According to the k-tuple conjecture this sequence is theoretically infinite.
LINKS
Chris K. Caldwell prime k-tuple conjecture
Chris K. Caldwell k-tuple
MAPLE
for a from 3 to 1000 by 2 do
if isprime(a) and isprime(a+2) and isprime(a+14) then
print(a);
end if
end do
# second Maple program:
q:= p-> andmap(isprime, [p, p+2, p+14]):
select(q, [$1..10000])[]; # Alois P. Heinz, Jan 28 2022
MATHEMATICA
Select[Range[7000], And @@ PrimeQ[# + {0, 2, 14}] &] (* Amiram Eldar, Jan 20 2022 *)
CROSSREFS
Cf. A022004 (p,p+2,p+6), A046134 (p,p+2,p+8), A046135 (p,p+2,p+12).
Sequence in context: A074931 A023226 A113169 * A174913 A079496 A230639
KEYWORD
nonn
AUTHOR
Matt C. Anderson, Jan 19 2022
STATUS
approved