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.

A218040 Numbers n such that Q(sqrt(n)) has class number 8.

Original entry on oeis.org

226, 399, 442, 646, 799, 870, 910, 994, 1023, 1122, 1155, 1239, 1290, 1299, 1351, 1443, 1446, 1590, 1705, 1743, 1785, 1914, 1947, 1995, 2010, 2019, 2035, 2134, 2210, 2211, 2310, 2379, 2402, 2410, 2415, 2434, 2451, 2482, 2490, 2605, 2705, 2706, 2730, 2739, 2751
Offset: 1

Views

Author

Arkadiusz Wesolowski, Oct 19 2012

Keywords

Crossrefs

Programs

  • Mathematica
    Select[Range[2751], SquareFreeQ[#] && NumberFieldClassNumber@Sqrt[#] == 8 &]
  • PARI
    is(n)=issquarefree(n) && qfbclassno(if(n%4>1,4,1)*n)==8 \\ Charles R Greathouse IV, Jan 19 2017