"Source: Text/Geometry/Lseries.text";
"Line: 2500";
"Date: Mon May 17 16:13:13 2021";
"Main: Thu May 25 10:02:38 2023";
// original file: Text/Geometry/Lseries.text, line: 2500
// Example: H136E27 ()
print "Example: H136E27";
ei := GetEchoInput();
SetEchoInput(true);
E := EllipticCurve("32a"); // congruent number curve
chi := DirichletGroup(32).1; // character of conductor 4 lifted
MF := ModularForms(chi, 3); // weight 3 modular forms on Gamma1(32,chi)
NF := Newforms(MF);
NF[1][1]; // q-expansion of the desired form
Parent(Coefficient(NF[1][1], 3)); // defined over Q(i)
f1, f2 := Explode(ComplexEmbeddings(NF[1][1])[1]);
L1 := LSeries(E);
L2 := LSeries(f1); // first complex embedding
L := TensorProduct(L1, L2, [ <2, 9> ]); // conductor 2^9 (guessed)
time CFENew(L);
SetEchoInput(ei);
