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!)
A127345 a(n) = pq + pr + qr with p = prime(n), q = prime(n+1), and r = prime(n+2). 16

%I #25 May 19 2019 02:09:45

%S 31,71,167,311,551,791,1151,1655,2279,3119,3935,4871,5711,6791,8391,

%T 9959,11639,13175,14831,16559,18383,20975,24071,27419,30191,32231,

%U 33911,36071,40511,45791,51983,55199,60167,64199,69599,73911,79031,84311

%N a(n) = pq + pr + qr with p = prime(n), q = prime(n+1), and r = prime(n+2).

%C a(n) = coefficient of x^1 of the polynomial Product_{j=0..2} (x-prime(n+j)) of degree 3; the roots of this polynomial are prime(n), ..., prime(n+2); cf. Vieta's formulas.

%C Arithmetic derivative (see A003415) of prime(n)*prime(n+1)*prime(n+2). [_Giorgio Balzarotti_, May 26 2011]

%H Harvey P. Dale, <a href="/A127345/b127345.txt">Table of n, a(n) for n = 1..1000</a>

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/VietasFormulas.html">Vieta's Formulas</a>

%t Table[Prime[n]*Prime[n+1] + Prime[n]*Prime[n+2] + Prime[n+1]*Prime[n+2], {n, 100}]

%t Total[Times@@@Subsets[#,{2}]]&/@Partition[Prime[Range[40]],3,1] (* _Harvey P. Dale_, Sep 11 2017 *)

%o (PARI) {m=38;k=2;for(n=1,m,print1(sum(i=n,n+k-1,sum(j=i+1,n+k,prime(i)*prime(j))),","))} /* or */

%o {m=38;k=2;for(n=1,m,print1(polcoeff(prod(j=0,k,(x-prime(n+j))),1),","))} \\ _Klaus Brockhaus_, Jan 21 2007

%o (PARI) p=2;q=3;forprime(r=5,1e3,print1(p*q+p*r+q*r", ");p=q;q=r) \\ _Charles R Greathouse IV_, Jan 13 2012

%Y Cf. A127346, A127347, A127348, A127349, A127350, A127351, A070934, A006094.

%K nonn,easy

%O 1,1

%A _Artur Jasinski_, Jan 11 2007

%E Edited by _Klaus Brockhaus_, Jan 21 2007

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 July 18 17:38 EDT 2024. Contains 374388 sequences. (Running on oeis4.)