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.

A049229 Primes p such that p-2 is not squarefree.

Original entry on oeis.org

11, 29, 47, 83, 101, 127, 137, 149, 173, 191, 227, 263, 277, 281, 317, 353, 389, 443, 461, 479, 509, 541, 569, 577, 587, 607, 641, 659, 677, 727, 821, 827, 839, 857, 877, 911, 929, 947, 977, 983, 1019, 1031, 1091, 1109, 1129, 1163, 1181, 1217, 1277, 1289
Offset: 1

Views

Author

Keywords

Comments

This sequence is infinite and its relative density in the sequence of the primes is equal to 1 - 2 * Product_{p prime} (1-1/(p*(p-1))) = 1 - 2 * A005596 = 0.252088... - Amiram Eldar, Feb 27 2021

Crossrefs

Programs

  • Mathematica
    Select[Prime[Range[2,300]],!SquareFreeQ[#-2]&] (* Harvey P. Dale, Nov 14 2012 *)
  • PARI
    isok(p) = (p>2) && isprime(p) && !issquarefree(p-2); \\ Michel Marcus, May 14 2018