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
7, 11, 23, 59, 83, 97, 109, 149, 233, 283, 317, 337, 349, 359, 367, 383, 479, 487, 563, 571, 593, 641, 709, 769, 823, 839, 863, 1009, 1117, 1129, 1217, 1283, 1297, 1319, 1423, 1553, 1579, 1619, 1627, 1663, 1733, 1913, 2029, 2039, 2063, 2069, 2083, 2099, 2129 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
3+5-(5-3)/2=3+5-1=7, 5+7-(7-5)/2=5+7-1=11, ...
MATHEMATICA
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
Select[#[[1]]+#[[2]]-(#[[2]]-#[[1]])/2&/@Partition[ Prime[ Range[ 200]], 2, 1], PrimeQ] (* Harvey P. Dale, Mar 14 2021 *)
CROSSREFS
Cf. A092217.
Sequence in context: A163848 A111671 A213895 * A118072 A141305 A243916
KEYWORD
nonn
AUTHOR
EXTENSIONS
More terms from Harvey P. Dale, Mar 14 2021
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 March 18 22:56 EDT 2024. Contains 370952 sequences. (Running on oeis4.)