cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A238204 Even numbers n such that the difference with the preceding prime is prime.

This page as a plain text file.
%I A238204 #31 May 16 2014 05:55:34
%S A238204 10,16,22,26,28,34,36,40,46,50,52,56,58,64,66,70,76,78,82,86,88,92,94,
%T A238204 96,100,106,112,116,118,120,124,126,130,134,136,142,144,146,154,156,
%U A238204 160,162,166,170,172,176,178,184,186,188,196,202,204,206,210,214,216
%N A238204 Even numbers n such that the difference with the preceding prime is prime.
%H A238204 Vincenzo Librandi, <a href="/A238204/b238204.txt">Table of n, a(n) for n = 1..1000</a>
%e A238204 28 is in the list because 23 is the greatest prime less than 28 and 28 - 23 = 5 is also prime.
%p A238204 a:= proc(n) option remember; local k;
%p A238204       for k from `if`(n=1, 4, a(n-1)+2) by 2
%p A238204       while not isprime(k-prevprime(k)) do od; k
%p A238204     end:
%p A238204 seq(a(n), n=1..60);  # _Alois P. Heinz_, Mar 03 2014
%t A238204 Select[Range[99] 2, PrimeQ[# - NextPrime[#, -1]] &] (* _Giovanni Resta_, Feb 22 2014 *)
%K A238204 nonn
%O A238204 1,1
%A A238204 _Franz Vrabec_, Feb 20 2014