"Source: Text/Geometry/HypGeomMot.text";
"Line: 886";
"Date: Mon Jun 24 23:00:01 2019";
"Main: Thu May 25 10:02:38 2023";
// original file: Text/Geometry/HypGeomMot.text, line: 886
// Example: H135E6 ()
print "Example: H135E6";
ei := GetEchoInput();
SetEchoInput(true);
H := HypergeometricData([1/2,1/2,1/2,1/2],[0,0,0,0]);
L := LSeries(H,-1 : BadPrimes:=[<2,9,1>]); // guessed
CFENew(L);
LGetCoefficients(L,100);
// compare to the Tensor product way of getting this example
E := EllipticCurve("32a");
NF := Newforms(ModularForms(DirichletGroup(32).1,3)); // wt 3 w/char
L1 := LSeries(E); L2 := LSeries(ComplexEmbeddings(NF[1][1])[1][1]);
TP := TensorProduct(L1, L2, [ <2, 9> ]); // conductor 2^9 (guessed)
[Round(Real(x)) : x in LGetCoefficients(TP,100)];
SetEchoInput(ei);
