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.

A218038 Numbers n such that Q(sqrt(n)) has class number 6.

Original entry on oeis.org

235, 346, 427, 506, 574, 697, 785, 786, 842, 874, 894, 895, 898, 899, 906, 985, 1086, 1191, 1211, 1339, 1342, 1345, 1406, 1527, 1546, 1639, 1735, 1758, 1765, 1851, 1866, 1882, 1937, 1954, 2118, 2230, 2233, 2263, 2298, 2495, 2505, 2510, 2554, 2666, 2678, 2726
Offset: 1

Views

Author

Arkadiusz Wesolowski, Oct 19 2012

Keywords

Crossrefs

Programs

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