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.

A206462 Primes p such that p + nextprime(p) is a squarefree number (A005117).

Original entry on oeis.org

2, 13, 19, 37, 67, 89, 103, 109, 127, 163, 193, 199, 211, 229, 307, 379, 389, 397, 449, 463, 467, 479, 487, 499, 509, 613, 643, 661, 683, 701, 719, 739, 757, 769, 797, 859, 877, 883, 887, 911, 929, 937, 967, 983, 997, 1009, 1093, 1109, 1163, 1201, 1237, 1279
Offset: 1

Views

Author

Zak Seidov, Feb 07 2012

Keywords

Examples

			13 + 17 = 30 = A206329(2).
		

Crossrefs

Programs

  • Haskell
    a206462 n = a206462_list !! (n-1)
    a206462_list = map (a000040 . (+ 1)) $
                       elemIndices 1 $ map a008966 a001043_list
    -- Reinhard Zumkeller, Feb 08 2012
  • Mathematica
    Prime[Select[Range[200], Abs[MoebiusMu[Prime[#] + Prime[# + 1]]] == 1 &]] (* Alonso del Arte, Feb 08 2012 *)

Formula

a(n) + nextprime(a(n)) = A206329(n).
A008966(A001043(A049084(a(n)))) = 1. [Reinhard Zumkeller, Feb 08 2012]