OFFSET
1,1
REFERENCES
Z. I. Borevich and I. R. Shafarevich, Number Theory. Academic Press, NY, 1966, pp. 422-423.
E. L. Ince, Cycles of Reduced Ideals in Quadratic Fields. British Association Mathematical Tables, Vol. 4, London, 1934. (See p. 1.)
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
H. M. Stark, An Introduction to Number Theory. Markham, Chicago, 1970, p. 296.
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000 [terms 1 through 1000 by T. D. Noe]
A. M. Odlyzko, Letters to N. J. A. Sloane Feb 1974
R. G. Underwood, On the content bound for real quadratic field extensions, Axioms 2013, 2, 1-9; doi:10.3390/axioms2010001.
MATHEMATICA
Select[Range[2, 199], MoebiusMu[#] != 0 && NumberFieldClassNumber[Sqrt[#]] == 1 &] (* Alonso del Arte, Apr 17 2015 *)
PROG
(PARI)
A007947(n)={my(p); p=factor(n)[, 1]; prod(i=1, length(p), p[i]); }
{ for (n=2, 10^3,
if ( n!=A007947(n), next() );
K = bnfinit(x^2 - n);
if ( K.cyc == [], print1( n, ", ") );
); }
/* Joerg Arndt, Oct 18 2012 */
(PARI) is(n)=issquarefree(n) && qfbclassno(if(n%4>1, 4, 1)*n)==1 \\ Charles R Greathouse IV, Jan 19 2017
CROSSREFS
KEYWORD
nonn,nice
AUTHOR
EXTENSIONS
The table in Borevich and Shafarevich extends to 497.
STATUS
approved