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.
%I A124247 #4 Jun 25 2013 16:50:05 %S A124247 41,91,299,341 %N A124247 Numbers n such that n!!-8 and n!!+8 are two consecutive primes. %C A124247 n is in the sequence iff n!!-8 and n!!+8 are primes and the four numbers n!!-2,n!!+2, n!!-4 & n!!+4 are composites. It's interesting that related to the term 341 we can say 341!!-(3+4+1) and 341!!+(3+4+1) are two consecutive primes with length 341+prime(3+4+1). Conjecture: 341 is the largest term of this sequence. %e A124247 341 is in the sequence because 341!!-8 and 341!!+8 are primes and the four numbers 341!!-2, 341!!+2, 341!!-4 & 341!!+4 are composites. %t A124247 Select[Range[5,500],PrimeQ[ #!!-8]&&PrimeQ[ #!!+8]&&!PrimeQ[ #!!-4] &&!PrimeQ[ #!!+4]&&!PrimeQ[ #!!-2]&&!PrimeQ[ #!!+2]&] %t A124247 n8pQ[n_]:=Module[{x=n!!},PrimeQ[x-8]&&NextPrime[x-8]==x+8]; Select[Range[ 350],n8pQ] (* _Harvey P. Dale_, Jun 25 2013 *) %Y A124247 Cf. A076188. %K A124247 nonn %O A124247 1,1 %A A124247 _Farideh Firoozbakht_, Nov 19 2006