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.

A328016 Numbers k such that k, k+1, ... k+6 are all cubefree (A004709).

Original entry on oeis.org

1, 9, 17, 33, 41, 57, 65, 73, 89, 97, 113, 137, 145, 153, 169, 177, 193, 201, 209, 217, 225, 233, 257, 273, 281, 289, 305, 313, 329, 353, 361, 385, 393, 409, 417, 425, 433, 441, 449, 465, 473, 489, 505, 521, 529, 545, 553, 569, 577, 585, 601, 609, 633, 641, 649, 657
Offset: 1

Views

Author

Amiram Eldar, Oct 01 2019

Keywords

Comments

There cannot be 8 consecutive cubefree numbers since one of them must be divisible by 8 = 2^3.
All the terms are congruent to 1 mod 8.
The asymptotic density of this sequence is A328017.

Examples

			9 is in the sequence since the numbers 9, 10, ... 15 are all cubefree.
		

Crossrefs

Programs

  • Mathematica
    cubeFreeQ[n_] := FreeQ[FactorInteger[n], {, k /; k > 2}]; aQ[n_] := AllTrue[n + Range[0, 6], cubeFreeQ]; Select[Range[650], aQ]