login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A098014
A098013/2.
0
2, 2, 2, 3, 3, 2, 2, 3, 3, 3, 2, 3, 2, 3, 2, 2, 2, 7, 2, 3, 5, 3, 3, 2, 3, 3, 5, 2, 2, 2, 3, 5, 3, 3, 3, 3, 2, 5, 7, 2, 2, 7, 3, 5, 2, 3, 3, 3, 2, 3, 2, 5, 5, 3, 2, 3, 2, 2, 2, 2, 3, 3, 5, 3, 3, 3, 5, 3, 3, 3, 3, 2, 5, 2, 3, 3, 2, 3, 5, 5, 3, 3, 2, 3, 2, 2, 7, 5, 5, 2, 5, 7, 2, 2, 7, 2, 2, 2, 5, 2, 3, 3, 7, 2, 3
OFFSET
1,1
COMMENTS
Half the difference between consecutive primes is prime.
(1/2)(29 - 23) = 3, the 4th entry in the table.
MATHEMATICA
Select[Differences[Prime[Range[250]]]/2, PrimeQ] (* Harvey P. Dale, Dec 20 2012 *)
PROG
(PARI) f(n) = for(x=1, n, y=prime(x+1)-prime(x); if(isprime(y\2), print1(y\2", ")))
(Magma) [ a: n in [1..2500] | IsPrime(a) where a is ((NthPrime(n+1)-NthPrime(n)) div 2 )]; // Vincenzo Librandi, Apr 19 2011
CROSSREFS
Sequence in context: A348470 A317369 A096916 * A059957 A361088 A165924
KEYWORD
easy,nonn
AUTHOR
Cino Hilliard, Sep 09 2004
STATUS
approved