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.

A281192 Numbers with no squarefree neighbors.

Original entry on oeis.org

17, 19, 26, 49, 51, 53, 55, 89, 91, 97, 99, 125, 127, 149, 151, 161, 163, 170, 197, 199, 233, 235, 241, 243, 244, 249, 251, 269, 271, 293, 295, 305, 307, 337, 339, 341, 343, 349, 351, 362, 377, 379, 413, 415, 424, 449, 451, 476, 485, 487, 489, 491, 521, 523, 530, 549, 551, 557, 559, 577
Offset: 1

Views

Author

Juri-Stepan Gerasimov, Jan 16 2017

Keywords

Comments

Includes all k == 17 or 19 (mod 36), also 2*p^2-1 and 2*p^2+1 for odd primes p. - Robert Israel, Jan 17 2017
This sequence has density around 0.106.... - Charles R Greathouse IV, Jan 23 2017
More accurately, the asymptotic density of this sequence is 1 - 2/zeta(2) + Product_{p prime} (1 - 2/p^2) = 1 - 2 * A059956 + A065474 = 0.1067798952... - Amiram Eldar, Feb 25 2021

Examples

			17 is in this sequence because 17 - 1 = 16 = 2^4 and 17 + 1 = 18 = 2*3^2 are not squarefree.
		

Crossrefs

Supersequence of A075432 and A235578.

Programs

  • Magma
    [n: n in [2..600] | not IsSquarefree(n-1) and not IsSquarefree(n+1)];
    
  • Maple
    select(t -> not numtheory:-issqrfree(t-1) and not numtheory:-issqrfree(t+1), [$1..1000]); # Robert Israel, Jan 17 2017
  • Mathematica
    Select[Range[600], !SquareFreeQ[# - 1] && !SquareFreeQ[# + 1] &] (* Vincenzo Librandi, Jan 17 2017 *)
  • PARI
    is(n)=!issquarefree(n-1) && !issquarefree(n+1) \\ Charles R Greathouse IV, Jan 23 2017