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 A224979 #8 Jan 08 2015 15:45:33 %S A224979 0,1,1,2,2,3,4,4,6,6,4,3,8,6,10,10,12,5,4,12,9,8,16,18,6,16,10,16,12, %T A224979 20,6,18,16,14,24,8,9,10,26,22,28,12,22,13,26,16,12,14,24,18,30,36,16, %U A224979 32,28,32,38,14,13,32,16,38,16,34,17,30,12,18,32,26 %N A224979 Number of primes of the form p-q+1 where q is any prime < p = prime(n). %H A224979 Harvey P. Dale, <a href="/A224979/b224979.txt">Table of n, a(n) for n = 1..1000</a> %e A224979 For n=5, p=11, there are a(5)=2 solutions: 11-5+1=7 and 11-7+1=5. %t A224979 Table[p = Prime[n]; c = 0; i = 1; While[i < n, If[PrimeQ[p - Prime[i] + 1], c = c + 1]; i++]; c, {n, 70}] %t A224979 Table[Count[Prime[n]-Prime[Range[n-1]]+1,_?PrimeQ],{n,70}] (* _Harvey P. Dale_, Jan 08 2015 *) %o A224979 (PARI) a(n)=my(p=prime(n),s);forprime(q=2,p-1,s+=isprime(p-q+1));s \\ _Charles R Greathouse IV_, Apr 22 2013 %Y A224979 Cf. A224748, A224908. %K A224979 nonn %O A224979 1,4 %A A224979 _Jayanta Basu_, Apr 22 2013