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.

A086518 Primes arising as the arithmetic mean of a pair of successive terms of A086517.

Original entry on oeis.org

2, 5, 11, 13, 17, 29, 31, 23, 29, 41, 37, 41, 53, 59, 61, 53, 59, 73, 71, 73, 83, 89, 97, 101, 97, 89, 97, 109, 113, 127, 131, 137, 131, 127, 131, 127, 137, 149, 157, 163, 173, 181, 167, 157, 167, 173, 181, 191, 193, 197, 211, 223, 229, 223, 211, 223, 241, 227, 223
Offset: 1

Views

Author

Amarnath Murthy, Jul 30 2003

Keywords

Examples

			2 = (1+3)/2, 11 = (7+15)/2, etc.
		

Crossrefs

Programs

  • Haskell
    a086518 n = a086518_list !! (n-1)
    a086518_list = zipWith ((flip div 2 .) . (+))
                           a086517_list $ tail a086517_list
    -- Reinhard Zumkeller, Jun 30 2015
  • PARI
    v=[1]; n=1; while(n<100, s=(n+v[#v])/2; if(type(s)=="t_INT", if(isprime(s)&&!vecsearch(vecsort(v), n), print1(s,", "); v=concat(v, n); n=0)); n++) \\ Derek Orr, Jun 16 2015
    

Formula

a(n) = (A086517(n)+A086517(n+1))/2. - David Wasserman, Mar 10 2005

Extensions

More terms from David Wasserman, Mar 10 2005