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”).

A243627
Primes which are the sum of two consecutive squarefree numbers.
1
3, 5, 11, 13, 17, 29, 43, 59, 61, 67, 83, 89, 127, 131, 139, 151, 157, 173, 211, 227, 229, 233, 241, 271, 277, 283, 317, 331, 337, 347, 373, 389, 419, 421, 443, 449, 461, 487, 509, 521, 547, 563, 571, 577, 593, 619, 631, 643, 653, 659, 661, 691, 709, 727, 733, 751, 787, 797, 809
OFFSET
1,1
COMMENTS
Subsequence of A240603.
LINKS
EXAMPLE
3 is in this sequence because A005117(1) + A005117(1+1) = 1 + 2 = 3,
5 is in this sequence because A005117(2) + A005117(2+1) = 2 + 3 = 5,
11 is in this sequence because A005117(4) + A005117(4+1) = 5 + 6 = 11.
MATHEMATICA
Select[Abs[Differences[Select[Range[1000], MoebiusMu[#] != 0 &] * (-1)^Range[608]]], PrimeQ] (* Alonso del Arte, Jun 09 2014 *)
Select[Total/@Partition[Select[Range[500], SquareFreeQ], 2, 1], PrimeQ] (* Harvey P. Dale, Jul 29 2018 *)
CROSSREFS
Sequence in context: A020578 A250481 A227011 * A178604 A153443 A211876
KEYWORD
nonn,less
AUTHOR
STATUS
approved