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!)
A153405 Larger of 3 consecutive prime numbers such that p1*p2*p3 + d1 + d2 - 1 = average of twin prime pairs, d1 (delta) = p2 - p1, d2 (delta) = p3 - p2. 4
7, 577, 1759, 5119, 6959, 9293, 11057, 14407, 24877, 25183, 26209, 31177, 34483, 41729, 42403, 45293, 61121, 62539, 80621, 82153, 90007, 91997, 92353, 93827, 98387, 98893, 103613, 105913, 111409, 117163, 121001, 122833, 128431, 135613 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
7 is a term since (3, 5, 7) are consecutive primes, 3*5*7 + 2 + 2 - 1 = 108, and 108 +-1 = are twin primes.
MATHEMATICA
lst = {}; Do[p1 = Prime[n]; p2 = Prime[n + 1]; p3 = Prime[n + 2]; d1 = p2 -p1; d2 = p3 - p2; a = p1 * p2 * p3 + d1 + d2 - 1; If[PrimeQ[a - 1] && PrimeQ[a + 1], AppendTo[lst, p3]], {n, 8!}]; lst (* Vladimir Joseph Stephan Orlovsky *)
okQ[{a_, b_, c_}] := Module[{x = a b c + (b - a) + (c - b) - 1}, PrimeQ[x - 1] && PrimeQ[x + 1]]
Transpose[Select[Partition[Prime[Range[15000]], 3, 1], okQ]][[3]] (* Harvey P. Dale, Jan 18 2011 *)
PROG
(Magma) [p3:k in [1..14000]| IsPrime(p1*p2*p3+p3-p1-2) and IsPrime(p1*p2*p3+p3-p1) where p1 is NthPrime(k) where p2 is NthPrime(k+1) where p3 is NthPrime(k+2) ]; // Marius A. Burtea, Dec 31 2019
CROSSREFS
Sequence in context: A332157 A068616 A080810 * A322899 A203680 A261532
KEYWORD
nonn
AUTHOR
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 24 12:48 EDT 2024. Contains 371942 sequences. (Running on oeis4.)