A172187 Numbers k such that k and k+1 are squarefree but 2*k+1 is not.
13, 22, 37, 58, 73, 85, 94, 122, 130, 137, 157, 166, 181, 193, 202, 229, 237, 238, 253, 262, 265, 301, 302, 310, 318, 346, 373, 382, 409, 418, 433, 437, 445, 454, 462, 465, 481, 514, 517, 526, 537, 541, 553, 562, 589, 598, 634, 661, 662, 670, 697, 706, 733
Offset: 1
Keywords
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
Select[Range[750], And @@ SquareFreeQ /@ {#, # + 1} && !SquareFreeQ[2# + 1] &] (* Amiram Eldar, Mar 22 2020 *)