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.

A013647 Numbers k such that the period of the continued fraction for sqrt(k) contains no 1's.

Original entry on oeis.org

2, 5, 6, 10, 11, 12, 17, 18, 20, 26, 27, 28, 30, 37, 38, 39, 40, 41, 42, 50, 51, 55, 56, 65, 66, 68, 72, 82, 83, 84, 87, 89, 90, 101, 102, 104, 105, 110, 122, 123, 126, 128, 130, 131, 132, 145, 146, 147, 148, 150, 152, 155, 156, 170, 171, 174, 177, 180, 182, 197, 198, 200, 203
Offset: 1

Views

Author

Keywords

References

  • Kenneth H. Rosen, Elementary Number Theory and Its Applications, Addison-Wesley, 1984, page 426 (but beware of errors!).

Programs

  • Mathematica
    cf1Q[n_]:=Module[{s=Sqrt[n]},If[IntegerQ[s],False,FreeQ[ ContinuedFraction[ s][[2]],1]]]; Select[Range[250],cf1Q] (* Harvey P. Dale, Jun 06 2021 *)