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.

A227007 Numbers k such that k-1 is squarefree and every prime divisor of k-1 is in the sequence.

Original entry on oeis.org

2, 3, 4, 7, 8, 15, 22, 43, 44, 87, 130, 259, 302, 603, 904, 1807
Offset: 1

Views

Author

Keywords

Comments

The complement of A227006.
1807 is the last term in this sequence. - Charles R Greathouse IV, Jun 27 2013

Crossrefs

Cf. A227006.

Programs

  • Mathematica
    Needs["NumberTheory`NumberTheoryFunctions`"];Is[2] = True; Is[{}] = True; Is[n_] := Is[n] = If[ListQ[n], Is[n[[1, 1]]] && Is[Rest[n]], SquareFreeQ[n - 1] && Is[fa[n - 1]]]; Select[1 + Range@10000, Is]