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.

A350546 Numbers k such that the period of the continued fraction for sqrt(k) is a prime.

Original entry on oeis.org

3, 6, 8, 11, 12, 13, 15, 18, 20, 24, 27, 29, 30, 35, 38, 39, 40, 41, 42, 48, 51, 53, 56, 58, 61, 63, 66, 68, 72, 73, 74, 80, 83, 84, 85, 87, 89, 90, 97, 99, 102, 104, 105, 110, 120, 123, 125, 130, 132, 143, 146, 147, 148, 150, 152, 156, 157, 168, 171, 173, 182, 185, 193, 195, 198, 200
Offset: 1

Views

Author

Giorgos Kalogeropoulos, Jan 04 2022

Keywords

Examples

			13 is a term because the continued fraction for sqrt(13) is (3;1,1,1,1,6,1,1,1,1,6,...), whose periodic part is (1,1,1,1,6); its length (the period) is 5 (a prime).
		

Crossrefs

Programs

  • Mathematica
    Select[Range@200,PrimeQ@Length@Last@ContinuedFraction[Sqrt[#]]&]
  • PARI
    isokf(n, p) = {localprec(p); my(cf = contfrac(sqrt(n))); setsearch(Set(cf), 2*cf[1]); }
    f(n) = {if (issquare(n), 0, my(p=100); while (! isokf(n, p), p+=100); localprec(p); my(cf = contfrac(sqrt(n))); for (k=2, #cf, if (cf[k] == 2*cf[1], return (k-1))); ); } \\ A003285
    isok(k) = isprime(f(k)); \\ Michel Marcus, Jan 05 2022