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!)
A253627 Initial members of prime sextuples (n, n+2, n+12, n+14, n+18, n+20). 1
179, 809, 5639, 9419, 62969, 88799, 109829, 284729, 452519, 626609, 663569, 855719, 983429, 1003349, 1146779, 1322159, 2116559, 2144489, 2668229, 3153569, 3437699, 4575269, 4606559, 4977419, 5248079, 5436269, 5450099, 5651729 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
This sequence is prime n, where there exist three twin prime pairs of (n,n+2), (n+12,n+14) and (n+18,n+20).
This is a subsequence of each of the following: A128469(30n+29), A060229(smaller of twin primes of 30n+29).
The prime sextuple does not have to comprise only consecutive primes. - Harvey P. Dale, Aug 15 2016
LINKS
Eric Weisstein's World of Mathematics, Twin Primes
Wikipedia, Twin prime
EXAMPLE
For n= 809, the numbers, 809, 811, 821, 823, 827, 829, are primes.
MATHEMATICA
a253627[n_] := Select[Range@n, And[PrimeQ[#], PrimeQ[# + 2], PrimeQ[# + 12], PrimeQ[# + 14], PrimeQ[# + 18], PrimeQ[# + 20]] &]; a253627[10^7] (* Michael De Vlieger, Jan 06 2015 *)
Select[Prime[Range[400000]], AllTrue[#+{2, 12, 14, 18, 20}, PrimeQ]&] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Aug 15 2016 *)
PROG
(Python)
from sympy import isprime
for n in range(1, 10000001, 2):
..if isprime(n) and isprime(n+2) and isprime(n+12) and isprime(n+14) and isprime(n+18) and isprime(n+20): print(n, end=', ')
CROSSREFS
Cf. A077800 (twin primes), A001359, A128469, A060229.
Sequence in context: A283921 A120821 A255096 * A142855 A069796 A177682
KEYWORD
nonn
AUTHOR
Karl V. Keller, Jr., Jan 06 2015
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 April 19 18:05 EDT 2024. Contains 371798 sequences. (Running on oeis4.)