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.

A172187 Numbers k such that k and k+1 are squarefree but 2*k+1 is not.

Original entry on oeis.org

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

Views

Author

Artur Jasinski, Jan 28 2010

Keywords

Crossrefs

Complement of A007674 and A172186.

Programs

  • Mathematica
    Select[Range[750], And @@ SquareFreeQ /@ {#, # + 1} && !SquareFreeQ[2# + 1] &] (* Amiram Eldar, Mar 22 2020 *)