A206462 Primes p such that p + nextprime(p) is a squarefree number (A005117).
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
Keywords
Examples
13 + 17 = 30 = A206329(2).
Links
- Reinhard Zumkeller, Table of n, a(n) for n = 1..10000
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).