login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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
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

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified March 29 06:15 EDT 2024. Contains 371265 sequences. (Running on oeis4.)