|
|
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
(list;
graph;
refs;
listen;
history;
text;
internal format)
|
|
|
OFFSET
|
1,1
|
|
COMMENTS
|
According to the k-tuple conjecture this sequence is theoretically infinite.
|
|
LINKS
|
Table of n, a(n) for n=1..47.
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
Adjacent sequences: A350853 A350854 A350855 * A350857 A350858 A350859
|
|
KEYWORD
|
nonn
|
|
AUTHOR
|
Matt C. Anderson, Jan 19 2022
|
|
STATUS
|
approved
|
|
|
|