OFFSET
1,1
COMMENTS
h1 is given by A000927, and G(p) = 2*p*(p/(4*Pi^2))^((p-1)/4).
a(1)-a(12) from Fung et al., a(13)-a(14) from Shokrollahi, a(15)-a(17) from Broadhurst, a(18) from Languasco et al. and Broadhurst, a(19)-a(26) from Broadhurst.
LINKS
David Broadhurst, Kummer ratio champions with p < 10^12, July 22 2021.
Gilbert Fung, Andrew Granville and Hugh C. Williams, Computation of the first factor of the class number of cyclotomic fields, Journal of Number Theory, Volume 42, Issue 3, November 1992, Pages 297-312. See Table IV A p. 304.
Alessandro Languasco, Pieter Moree, Sumaia Saad Eddin and Alisa Sedunova, Computation of the Kummer ratio of the class number for prime cyclotomic fields, arXiv:1908.01152 [math.NT], 2019.
M. A. Shokrollahi, Relative class number of imaginary Abelian fields of prime conductor below 10000, Math. Comp. 68 (1999), 1717-1728. See Table 4 p. 1726.
PROG
(PARI) h1(p) = if (p<5, 1, abs( matdet(matrix((p-1)/2-2, (p-1)/2-2, i, j, ((i+2)*(j+2))\p - ((i+1)*(j+2))\p)) )); \\ A000927
G(p) = 2*p*(p/(4*Pi^2))^((p-1)/4);
lista(nn) = {my(m = 0, nm); for (n=2, nn, p = prime(n); if ((nm = h1(p)/G(p)) > m, print1(p, ", "); m = nm); ); }
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Michel Marcus, Aug 06 2019
EXTENSIONS
Missing terms 42611, 198221, 305741 and terms larger than 6766811 added by Alessandro Languasco on behalf of David Broadhurst, Jul 24 2021
STATUS
approved