"Source: Text/Geometry/Lseries.text";
"Line: 182";
"Date: Mon May 17 16:13:13 2021";
"Main: Thu May 25 10:02:38 2023";
// original file: Text/Geometry/Lseries.text, line: 182
// Example: H136E3 ()
print "Example: H136E3";
ei := GetEchoInput();
SetEchoInput(true);
R<x> := PolynomialRing(Rationals());
F := NumberField(x^12-3);
L := LSeries(F: Method:="Direct");
Conductor(L), LCfRequired(L);
G := GaloisGroup(F);
#G, [Degree(ch): ch in CharacterTable(G)];
time L := LSeries(F : Method:="Artin");
[Conductor(f[1]) : f in Factorisation(L)];
time Evaluate(L, 2);
SetEchoInput(ei);
