The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A238204 Even numbers n such that the difference with the preceding prime is prime. 2
10, 16, 22, 26, 28, 34, 36, 40, 46, 50, 52, 56, 58, 64, 66, 70, 76, 78, 82, 86, 88, 92, 94, 96, 100, 106, 112, 116, 118, 120, 124, 126, 130, 134, 136, 142, 144, 146, 154, 156, 160, 162, 166, 170, 172, 176, 178, 184, 186, 188, 196, 202, 204, 206, 210, 214, 216 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
28 is in the list because 23 is the greatest prime less than 28 and 28 - 23 = 5 is also prime.
MAPLE
a:= proc(n) option remember; local k;
for k from `if`(n=1, 4, a(n-1)+2) by 2
while not isprime(k-prevprime(k)) do od; k
end:
seq(a(n), n=1..60); # Alois P. Heinz, Mar 03 2014
MATHEMATICA
Select[Range[99] 2, PrimeQ[# - NextPrime[#, -1]] &] (* Giovanni Resta, Feb 22 2014 *)
CROSSREFS
Sequence in context: A129848 A004261 A083118 * A242057 A245024 A264721
KEYWORD
nonn
AUTHOR
Franz Vrabec, Feb 20 2014
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 June 1 23:52 EDT 2024. Contains 373032 sequences. (Running on oeis4.)