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!)
A140111 Primes of the form prime(x) + prime(x+1) - (prime(x+1) - prime(x))/2. 1

%I #4 Mar 14 2021 18:30:02

%S 7,11,23,59,83,97,109,149,233,283,317,337,349,359,367,383,479,487,563,

%T 571,593,641,709,769,823,839,863,1009,1117,1129,1217,1283,1297,1319,

%U 1423,1553,1579,1619,1627,1663,1733,1913,2029,2039,2063,2069,2083,2099,2129

%N Primes of the form prime(x) + prime(x+1) - (prime(x+1) - prime(x))/2.

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

%e 3+5-(5-3)/2=3+5-1=7, 5+7-(7-5)/2=5+7-1=11, ...

%t a = {}; Do[p1 = Prime[n]; p2 = Prime[n + 1]; p = p1 + p2 - (p2 - p1)/2; If[PrimeQ[p], AppendTo[a, p]], {n, 10^2}]; a

%t Select[#[[1]]+#[[2]]-(#[[2]]-#[[1]])/2&/@Partition[ Prime[ Range[ 200]],2,1],PrimeQ] (* _Harvey P. Dale_, Mar 14 2021 *)

%Y Cf. A092217.

%K nonn

%O 1,1

%A _Vladimir Joseph Stephan Orlovsky_, Jun 21 2008

%E More terms from _Harvey P. Dale_, Mar 14 2021

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 02:28 EDT 2024. Contains 371782 sequences. (Running on oeis4.)