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!)
A292743 Initial member of 6 consecutive primes a, b, c, d, e, f such that (a + f) = (b + e), (a + e) = (b + d) and (c + f) = (d + e). 3
6353, 14731, 19463, 71333, 77543, 78781, 83417, 104701, 105557, 130651, 185021, 202799, 214433, 218111, 344243, 351031, 357661, 358429, 380417, 408203, 443221, 466547, 496471, 505091, 587117, 593491, 634241, 652733, 702497, 746177, 778241, 807011, 886973, 949951 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
None of the terms <= 10^7, is the smaller of twin primes.
78781 is the first term that is greater of twin primes; 78781 - 2 = 78779 is prime.
LINKS
EXAMPLE
6353 is a term because it is the initial member of 6 consecutive primes {6353, 6359, 6361, 6367, 6373, 6379} = {a, b, c, d, e, f}; and (a + f) = (b + e), (a + e) = (b + d) and (c + f) = (d + e).
MAPLE
A292743:= proc(n)local a, b, c, d, e, f; a:=ithprime(n); b:=ithprime(n+1); c:=ithprime(n+2); d:=ithprime(n+3); e:=ithprime(n+4); f:=ithprime(n+5); if (a + f) = (b + e) and (a + e) = (b + d) and (c + f) = (d + e) then RETURN (ithprime(n)); fi; end: seq(A292743(n), n=1..100000);
MATHEMATICA
Select[Partition[Prime@ Range[10^5], 6, 1], Function[{a, b, c, d, e, f}, And[(a + f) == (b + e), (a + e) == (b + d), (c + f) == (d + e)]] @@ # &][[All, 1]] (* Michael De Vlieger, Sep 22 2017 *)
CROSSREFS
Sequence in context: A252268 A292715 A296777 * A117050 A292040 A203044
KEYWORD
nonn
AUTHOR
K. D. Bajpai, Sep 22 2017
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 23 23:26 EDT 2024. Contains 371917 sequences. (Running on oeis4.)