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!)
A153402 Smaller 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. 6
3, 569, 1747, 5107, 6947, 9281, 11027, 14389, 24851, 25169, 26189, 31153, 34469, 41687, 42391, 45281, 61091, 62507, 80603, 82139, 89989, 91967, 92333, 93809, 98369, 98873, 103583, 105899, 111347, 117127, 120977, 122819, 128411, 135601 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
3*5*7+2+2-1=108+-1=prime,
LINKS
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, p1]], {n, 8!}]; lst
s3cpQ[{a_, b_, c_}]:=Module[{tp=a*b*c+(c-a)-1}, AllTrue[tp+{1, -1}, PrimeQ]]; Select[ Partition[Prime[Range[15000]], 3, 1], s3cpQ][[All, 1]] (* The program uses the AllTrue function from Mathematica version 10 *) (* Harvey P. Dale, Jul 01 2018 *)
CROSSREFS
Sequence in context: A171359 A002306 A087574 * A121043 A058467 A137136
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 September 5 14:34 EDT 2024. Contains 375700 sequences. (Running on oeis4.)