// Make newform 3840.2.f.l in Magma, downloaded from the LMFDB on 29 March 2024. // To make the character of type GrpDrchElt, type "MakeCharacter_3840_f();" // To make the character of type GrpDrchElt with Codomain the HeckeField, type "MakeCharacter_3840_f_Hecke();" // To make the coeffs of the qexp of the newform in the Hecke field type "qexpCoeffs();" // To make the newform (type ModFrm), type "MakeNewformModFrm_3840_2_f_l();". // This may take a long time! To see verbose output, uncomment the SetVerbose lines below. // The precision argument determines an initial guess on how many Fourier coefficients to use. // This guess is increased enough to uniquely determine the newform. // To make the Hecke irreducible modular symbols subspace (type ModSym) // containing the newform, type "MakeNewformModSym_3840_2_f_l();". // This may take a long time! To see verbose output, uncomment the SetVerbose line below. // The default sign is -1. You can change this with the optional parameter "sign". function ConvertToHeckeField(input: pass_field := false, Kf := []) if not pass_field then poly := [64, 0, 16, 0, 0, 0, -8, 0, 0, 0, 1, 0, 1]; Kf := NumberField(Polynomial([elt : elt in poly])); AssignNames(~Kf, ["nu"]); end if; Rf_num := [[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, -4, 0, 4, 0, 1, 0, 1, 0, 0, 0], [0, 0, 0, 24, 0, -12, 0, 6, 0, 3, 0, 1], [0, 0, 0, 8, 0, 4, 0, 2, 0, -1, 0, 1], [4, 0, 2, 0, 1, 0, -1, 0, 0, 0, 0, 0], [-8, 0, 4, 0, 4, 0, 1, 0, 0, 0, -1, 0], [0, -64, 0, 24, 0, -12, 0, -2, 0, -5, 0, 1], [8, 0, -8, 0, -2, 0, -1, 0, 1, 0, 0, 0], [0, 0, 0, 24, 0, 4, 0, 2, 0, -3, 0, -1], [0, 32, 0, 40, 0, -4, 0, -6, 0, -1, 0, 1], [-32, 0, -8, 0, 4, 0, 2, 0, -3, 0, -1, 0], [0, 128, 0, -8, 0, -36, 0, -10, 0, -3, 0, 3]]; Rf_basisdens := [1, 8, 64, 64, 4, 8, 64, 8, 32, 32, 16, 64]; Rf_basisnums := ChangeUniverse([[z : z in elt] : elt in Rf_num], Kf); Rfbasis := [Rf_basisnums[i]/Rf_basisdens[i] : i in [1..Degree(Kf)]]; inp_vec := Vector(Rfbasis)*ChangeRing(Transpose(Matrix([[elt : elt in row] : row in input])),Kf); return Eltseq(inp_vec); end function; // To make the character of type GrpDrchElt, type "MakeCharacter_3840_f();" function MakeCharacter_3840_f() N := 3840; order := 2; char_gens := [511, 2821, 2561, 1537]; v := [2, 2, 2, 1]; // chi(gens[i]) = zeta^v[i] assert UnitGenerators(DirichletGroup(N)) eq char_gens; F := CyclotomicField(order); chi := DirichletCharacterFromValuesOnUnitGenerators(DirichletGroup(N,F),[F|F.1^e:e in v]); return MinimalBaseRingCharacter(chi); end function; // To make the character of type GrpDrchElt with Codomain the HeckeField, type "MakeCharacter_3840_f_Hecke();" function MakeCharacter_3840_f_Hecke(Kf) N := 3840; order := 2; char_gens := [511, 2821, 2561, 1537]; char_values := [[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]; assert UnitGenerators(DirichletGroup(N)) eq char_gens; values := ConvertToHeckeField(char_values : pass_field := true, Kf := Kf); // the value of chi on the gens as elements in the Hecke field F := Universe(values);// the Hecke field chi := DirichletCharacterFromValuesOnUnitGenerators(DirichletGroup(N,F),values); return chi; end function; function ExtendMultiplicatively(weight, aps, character) prec := NextPrime(NthPrime(#aps)) - 1; // we will able to figure out a_0 ... a_prec primes := PrimesUpTo(prec); prime_powers := primes; assert #primes eq #aps; log_prec := Floor(Log(prec)/Log(2)); // prec < 2^(log_prec+1) F := Universe(aps); FXY := PolynomialRing(F, 2); // 1/(1 - a_p T + p^(weight - 1) * char(p) T^2) = 1 + a_p T + a_{p^2} T^2 + ... R := PowerSeriesRing(FXY : Precision := log_prec + 1); recursion := Coefficients(1/(1 - X*T + Y*T^2)); coeffs := [F!0: i in [1..(prec+1)]]; coeffs[1] := 1; //a_1 for i := 1 to #primes do p := primes[i]; coeffs[p] := aps[i]; b := p^(weight - 1) * F!character(p); r := 2; p_power := p * p; //deals with powers of p while p_power le prec do Append(~prime_powers, p_power); coeffs[p_power] := Evaluate(recursion[r + 1], [aps[i], b]); p_power *:= p; r +:= 1; end while; end for; Sort(~prime_powers); for pp in prime_powers do for k := 1 to Floor(prec/pp) do if GCD(k, pp) eq 1 then coeffs[pp*k] := coeffs[pp]*coeffs[k]; end if; end for; end for; return coeffs; end function; function qexpCoeffs() // To make the coeffs of the qexp of the newform in the Hecke field type "qexpCoeffs();" weight := 2; raw_aps := [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, -1, 1, 0, 0], [0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0], [0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0], [0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 2, 0], [0, 0, -1, 0, 0, 0, -1, 0, 0, 2, 0, 0], [-3, 0, 0, 0, -1, 1, 0, 1, 0, 0, 0, 0], [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 1], [0, 0, 0, 0, -2, 2, 0, 2, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, -2, 0, 0, 0, 0, 0], [0, -1, 0, 0, -1, 0, 0, -1, 0, 0, 0, 0], [0, 0, 1, -4, 0, 0, -1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 3, -1, 0, 0], [0, 0, 2, 0, 0, 0, 2, 0, -2, 0, 0, 0], [0, 0, 2, 0, 0, 0, -2, 0, 0, 0, 0, 0], [-2, 0, 0, 0, 2, -2, 0, -2, 0, 0, 0, 0], [0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 2, 0], [3, 0, 0, 0, 1, -1, 0, -1, 0, 0, 0, 0], [0, 0, 0, -2, 0, 0, 0, 0, 0, 0, 0, 2], [4, 0, 0, 0, -2, -2, 0, 2, 0, 0, 0, 0], [0, 0, 0, 0, 2, 0, 0, 2, 0, 0, -2, 0], [0, 0, -3, 0, 0, 0, -3, 0, 0, 0, 0, 0], [0, 3, 0, 0, -2, 0, 0, -2, 0, 0, 0, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, -4, 0, 0], [0, 0, 0, 0, 3, 0, 0, 3, 0, 0, -1, 0], [0, 1, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0], [0, 0, -2, 0, 0, 0, -2, 0, 1, -1, 0, 0], [0, -4, 0, 0, 3, 0, 0, 3, 0, 0, -1, 0], [0, 0, 1, 0, 0, 0, 1, 0, 3, 2, 0, 0], [0, 0, 3, 0, 0, 0, 3, 0, 0, -2, 0, 0], [-5, 0, 0, 0, 1, -1, 0, -1, 0, 0, 0, 0], [0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, -1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -4], [0, 1, 0, 0, -1, 0, 0, -1, 0, 0, 0, 0], [0, 0, -1, -14, 0, 0, 1, 0, 0, 0, 0, -2], [0, 0, -2, 0, 0, 0, -2, 0, 1, 3, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], [-8, 0, 0, 0, -4, 0, 0, 4, 0, 0, 0, 0], [0, 4, 0, 0, 2, 0, 0, 2, 0, 0, 4, 0], [0, 0, -1, 6, 0, 0, 1, 0, 0, 0, 0, -2], [7, 0, 0, 0, 1, 3, 0, -1, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 3, 0, 1, -2, 0, 0], [0, -3, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0], [0, 0, -4, 2, 0, 0, 4, 0, 0, 0, 0, -2], [0, 0, 0, 0, 0, 0, 0, 0, 2, -4, 0, 0], [0, 4, 0, 0, 1, 0, 0, 1, 0, 0, -3, 0], [-8, 0, 0, 0, 4, 0, 0, -4, 0, 0, 0, 0], [0, 0, 0, 0, -2, -2, 0, 2, 0, 0, 0, 0], [0, 0, -2, 0, 0, 0, -2, 0, -1, -1, 0, 0], [0, -8, 0, 0, 1, 0, 0, 1, 0, 0, -3, 0], [0, -7, 0, 0, -1, 0, 0, -1, 0, 0, -4, 0], [0, 0, 1, 0, 0, 0, 1, 0, -4, 2, 0, 0], [-11, 0, 0, 0, 3, 1, 0, -3, 0, 0, 0, 0], [0, 0, 2, 5, 0, 0, -2, 0, 0, 0, 0, -1], [-6, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0], [0, 0, 6, 12, 0, 0, -6, 0, 0, 0, 0, 4], [0, 0, -1, -12, 0, 0, 1, 0, 0, 0, 0, 4], [0, 0, 4, 0, 0, 0, -4, 0, 0, 0, 0, 4], [-4, 0, 0, 0, -4, 4, 0, 4, 0, 0, 0, 0], [0, -8, 0, 0, 2, 0, 0, 2, 0, 0, -4, 0], [0, 0, 1, 2, 0, 0, -1, 0, 0, 0, 0, 2], [0, 0, -1, 0, 0, 0, -1, 0, 3, 4, 0, 0], [0, 4, 0, 0, 4, 0, 0, 4, 0, 0, 6, 0], [0, 0, -4, -14, 0, 0, 4, 0, 0, 0, 0, -2], [0, 0, 2, 0, 0, 0, 2, 0, 6, 0, 0, 0], [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0], [-6, 0, 0, 0, 2, 2, 0, -2, 0, 0, 0, 0], [0, 1, 0, 0, -6, 0, 0, -6, 0, 0, 4, 0], [0, 0, -4, -25, 0, 0, 4, 0, 0, 0, 0, -3], [0, 0, 5, 0, 0, 0, 5, 0, -5, -2, 0, 0], [0, -1, 0, 0, 5, 0, 0, 5, 0, 0, -2, 0], [0, 0, -3, 0, 0, 0, -3, 0, 0, 4, 0, 0], [0, 0, -6, 1, 0, 0, 6, 0, 0, 0, 0, -1], [-4, 0, 0, 0, -2, 2, 0, 2, 0, 0, 0, 0], [12, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], [0, 0, -6, 0, 0, 0, -6, 0, -3, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, -6, 4, 0, 0], [6, 0, 0, 0, 10, -2, 0, -10, 0, 0, 0, 0], [0, 0, 0, 0, -8, 0, 0, -8, 0, 0, -8, 0], [7, 0, 0, 0, -3, -5, 0, 3, 0, 0, 0, 0], [0, 0, -4, 2, 0, 0, 4, 0, 0, 0, 0, -2], [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 4, 0, 0, -2, 0, 0, -2, 0, 0, -2, 0], [0, 0, 1, 0, 0, 0, 1, 0, 12, -2, 0, 0], [0, -7, 0, 0, -2, 0, 0, -2, 0, 0, -4, 0], [0, 0, 0, -6, 0, 0, 0, 0, 0, 0, 0, -2], [-14, 0, 0, 0, -6, 2, 0, 6, 0, 0, 0, 0], [0, -5, 0, 0, -6, 0, 0, -6, 0, 0, -8, 0], [0, 0, -4, 0, 0, 0, -4, 0, 3, -1, 0, 0], [0, 0, 5, 0, 0, 0, 5, 0, -7, 0, 0, 0], [0, 5, 0, 0, 5, 0, 0, 5, 0, 0, -4, 0], [0, 0, 1, 0, 0, 0, 1, 0, 0, -4, 0, 0], [14, 0, 0, 0, 4, 0, 0, -4, 0, 0, 0, 0], [0, 0, 8, -12, 0, 0, -8, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, -6, 0, 0, 0], [0, 0, 6, 8, 0, 0, -6, 0, 0, 0, 0, 0], [0, 0, 3, 10, 0, 0, -3, 0, 0, 0, 0, -2], [0, 0, -4, 2, 0, 0, 4, 0, 0, 0, 0, -2], [8, 0, 0, 0, 2, 2, 0, -2, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 3, 0, 3, 4, 0, 0], [0, -4, 0, 0, -6, 0, 0, -6, 0, 0, -4, 0], [0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 4], [0, 0, 0, 0, -1, 0, 0, -1, 0, 0, 3, 0], [-22, 0, 0, 0, 2, 2, 0, -2, 0, 0, 0, 0], [-4, 0, 0, 0, 8, 2, 0, -8, 0, 0, 0, 0], [0, -3, 0, 0, 0, 0, 0, 0, 0, 0, -4, 0], [0, 0, 2, -21, 0, 0, -2, 0, 0, 0, 0, -3], [0, -4, 0, 0, -9, 0, 0, -9, 0, 0, -9, 0], [0, 0, 9, 0, 0, 0, 9, 0, -5, -2, 0, 0], [1, 0, 0, 0, -9, 5, 0, 9, 0, 0, 0, 0], [6, 0, 0, 0, 4, 4, 0, -4, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, -4, 0, 0, 0, 0, 4], [0, 5, 0, 0, 1, 0, 0, 1, 0, 0, 4, 0], [0, 0, 5, -22, 0, 0, -5, 0, 0, 0, 0, 2], [0, 0, 4, 0, 0, 0, 4, 0, 1, -11, 0, 0], [0, 0, 2, 0, 0, 0, 2, 0, -2, -4, 0, 0], [0, -8, 0, 0, -4, 0, 0, -4, 0, 0, -4, 0], [0, 0, -5, 6, 0, 0, 5, 0, 0, 0, 0, -10], [0, 0, 4, -2, 0, 0, -4, 0, 0, 0, 0, -6], [0, 0, 9, 0, 0, 0, 9, 0, 9, -12, 0, 0], [0, 0, -5, 0, 0, 0, -5, 0, -4, 8, 0, 0], [0, 0, 8, 0, 0, 0, 8, 0, 2, -4, 0, 0], [-22, 0, 0, 0, -2, 2, 0, 2, 0, 0, 0, 0], [0, 3, 0, 0, -2, 0, 0, -2, 0, 0, 4, 0], [0, 0, 2, -21, 0, 0, -2, 0, 0, 0, 0, 1], [0, 0, 1, 0, 0, 0, 1, 0, 1, 4, 0, 0], [0, -3, 0, 0, -1, 0, 0, -1, 0, 0, 10, 0], [-3, 0, 0, 0, 7, 1, 0, -7, 0, 0, 0, 0], [0, 0, -6, 21, 0, 0, 6, 0, 0, 0, 0, -1], [-2, 0, 0, 0, 4, 0, 0, -4, 0, 0, 0, 0], [6, 0, 0, 0, 6, 0, 0, -6, 0, 0, 0, 0], [0, 0, 3, -34, 0, 0, -3, 0, 0, 0, 0, -2], [0, 0, 4, -12, 0, 0, -4, 0, 0, 0, 0, -8], [0, 0, -9, 12, 0, 0, 9, 0, 0, 0, 0, 0], [-14, 0, 0, 0, 8, 4, 0, -8, 0, 0, 0, 0], [0, 0, 9, 0, 0, 0, 9, 0, 3, -14, 0, 0], [0, 0, 1, 0, 0, 0, 1, 0, 12, -6, 0, 0], [0, -1, 0, 0, 8, 0, 0, 8, 0, 0, 4, 0], [0, 0, 4, -16, 0, 0, -4, 0, 0, 0, 0, 4], [0, 0, 12, 0, 0, 0, 12, 0, -6, 0, 0, 0], [-38, 0, 0, 0, 2, 2, 0, -2, 0, 0, 0, 0], [0, 0, -2, -21, 0, 0, 2, 0, 0, 0, 0, 5], [0, -4, 0, 0, -3, 0, 0, -3, 0, 0, -3, 0], [0, 0, 1, 0, 0, 0, 1, 0, 3, -2, 0, 0], [0, -5, 0, 0, 1, 0, 0, 1, 0, 0, 4, 0], [0, 0, -4, 17, 0, 0, 4, 0, 0, 0, 0, 3], [-20, 0, 0, 0, 6, 2, 0, -6, 0, 0, 0, 0], [0, 0, 4, 16, 0, 0, -4, 0, 0, 0, 0, 4], [0, -7, 0, 0, 11, 0, 0, 11, 0, 0, -4, 0], [0, 0, 2, 32, 0, 0, -2, 0, 0, 0, 0, 0], [16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [19, 0, 0, 0, 1, 7, 0, -1, 0, 0, 0, 0], [2, 0, 0, 0, 4, -8, 0, -4, 0, 0, 0, 0], [0, -4, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0], [0, 0, 7, 0, 0, 0, 7, 0, -4, 4, 0, 0], [0, 0, -8, -12, 0, 0, 8, 0, 0, 0, 0, 0], [0, -4, 0, 0, -3, 0, 0, -3, 0, 0, -11, 0], [0, -1, 0, 0, -4, 0, 0, -4, 0, 0, -4, 0], [0, 0, 10, 0, 0, 0, 10, 0, -1, -1, 0, 0], [0, -8, 0, 0, -3, 0, 0, -3, 0, 0, -7, 0], [0, 13, 0, 0, -5, 0, 0, -5, 0, 0, 2, 0], [-1, 0, 0, 0, -3, 11, 0, 3, 0, 0, 0, 0], [0, 0, 6, 11, 0, 0, -6, 0, 0, 0, 0, 5], [-8, 0, 0, 0, -2, 6, 0, 2, 0, 0, 0, 0], [0, 0, -7, -20, 0, 0, 7, 0, 0, 0, 0, 0], [0, 0, 4, 0, 0, 0, 4, 0, 3, -5, 0, 0], [0, 0, 14, 0, 0, 0, 14, 0, -2, 0, 0, 0], [28, 0, 0, 0, 0, -4, 0, 0, 0, 0, 0, 0], [0, -4, 0, 0, -6, 0, 0, -6, 0, 0, 2, 0], [15, 0, 0, 0, 1, 3, 0, -1, 0, 0, 0, 0], [32, 0, 0, 0, 10, -6, 0, -10, 0, 0, 0, 0], [0, 0, -3, 0, 0, 0, -3, 0, -13, 10, 0, 0], [0, 0, -7, 0, 0, 0, -7, 0, -4, 10, 0, 0], [0, -1, 0, 0, -4, 0, 0, -4, 0, 0, -12, 0], [0, 0, -2, 0, 0, 0, -2, 0, -2, 8, 0, 0], [0, -3, 0, 0, 8, 0, 0, 8, 0, 0, -4, 0], [0, 0, -12, 0, 0, 0, -12, 0, 5, 3, 0, 0], [0, 0, 8, -15, 0, 0, -8, 0, 0, 0, 0, 7], [0, 12, 0, 0, 5, 0, 0, 5, 0, 0, 13, 0], [0, 7, 0, 0, 13, 0, 0, 13, 0, 0, 14, 0], [0, 0, 3, 0, 0, 0, 3, 0, 4, 4, 0, 0], [0, 0, 6, 3, 0, 0, -6, 0, 0, 0, 0, 1], [0, 0, 2, -12, 0, 0, -2, 0, 0, 0, 0, 4], [-10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [20, 0, 0, 0, -8, -4, 0, 8, 0, 0, 0, 0], [0, 8, 0, 0, 10, 0, 0, 10, 0, 0, 14, 0], [0, 0, -4, -20, 0, 0, 4, 0, 0, 0, 0, 0], [0, 0, -13, 0, 0, 0, -13, 0, 9, 2, 0, 0], [0, 0, -5, 0, 0, 0, -5, 0, 0, -6, 0, 0], [0, 0, 8, 20, 0, 0, -8, 0, 0, 0, 0, 0], [0, -12, 0, 0, 3, 0, 0, 3, 0, 0, -1, 0], [-2, 0, 0, 0, 4, -4, 0, -4, 0, 0, 0, 0], [0, 0, 8, -21, 0, 0, -8, 0, 0, 0, 0, -3], [0, 8, 0, 0, -7, 0, 0, -7, 0, 0, -3, 0], [0, -11, 0, 0, -5, 0, 0, -5, 0, 0, -6, 0], [0, 0, 11, 0, 0, 0, 11, 0, -4, -8, 0, 0], [23, 0, 0, 0, -7, -5, 0, 7, 0, 0, 0, 0], [0, 0, -8, 5, 0, 0, 8, 0, 0, 0, 0, -5], [8, 0, 0, 0, -2, 6, 0, 2, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 2, 0, 15, -1, 0, 0], [0, 0, -3, 4, 0, 0, 3, 0, 0, 0, 0, 4], [9, 0, 0, 0, -9, 5, 0, 9, 0, 0, 0, 0], [0, 0, -12, -6, 0, 0, 12, 0, 0, 0, 0, -10], [-24, 0, 0, 0, -2, -6, 0, 2, 0, 0, 0, 0], [0, 0, 3, 0, 0, 0, 3, 0, -5, -4, 0, 0], [0, -12, 0, 0, 2, 0, 0, 2, 0, 0, -8, 0], [0, 0, -9, 0, 0, 0, -9, 0, -8, 6, 0, 0], [0, -13, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0], [0, 0, 4, -48, 0, 0, -4, 0, 0, 0, 0, 4], [-26, 0, 0, 0, 2, -10, 0, -2, 0, 0, 0, 0], [-16, 0, 0, 0, -6, 10, 0, 6, 0, 0, 0, 0], [0, -7, 0, 0, -10, 0, 0, -10, 0, 0, -4, 0], [-8, 0, 0, 0, -2, -10, 0, 2, 0, 0, 0, 0], [0, -11, 0, 0, -9, 0, 0, -9, 0, 0, 2, 0], [0, 0, -1, -28, 0, 0, 1, 0, 0, 0, 0, 8], [0, 0, 12, 0, 0, 0, 12, 0, 10, -8, 0, 0], [7, 0, 0, 0, -11, 11, 0, 11, 0, 0, 0, 0], [0, 0, 0, 0, -10, 14, 0, 10, 0, 0, 0, 0], [0, -7, 0, 0, -6, 0, 0, -6, 0, 0, -16, 0], [0, 0, 0, -10, 0, 0, 0, 0, 0, 0, 0, 10], [0, 0, 2, 0, 0, 0, 2, 0, 14, -4, 0, 0], [0, 4, 0, 0, 7, 0, 0, 7, 0, 0, 7, 0], [-58, 0, 0, 0, 2, -2, 0, -2, 0, 0, 0, 0], [0, 3, 0, 0, 6, 0, 0, 6, 0, 0, 16, 0], [0, 0, -2, 0, 0, 0, -2, 0, -13, 5, 0, 0], [0, 0, -8, -13, 0, 0, 8, 0, 0, 0, 0, -11], [0, 0, 3, 0, 0, 0, 3, 0, 9, -6, 0, 0], [-23, 0, 0, 0, -9, 5, 0, 9, 0, 0, 0, 0], [18, 0, 0, 0, 0, -12, 0, 0, 0, 0, 0, 0], [0, 0, -8, -32, 0, 0, 8, 0, 0, 0, 0, -4], [0, -5, 0, 0, 11, 0, 0, 11, 0, 0, 6, 0], [-18, 0, 0, 0, -2, -8, 0, 2, 0, 0, 0, 0], [0, 0, -1, 2, 0, 0, 1, 0, 0, 0, 0, -6], [0, 0, -6, 0, 0, 0, -6, 0, 7, -9, 0, 0], [22, 0, 0, 0, 2, 6, 0, -2, 0, 0, 0, 0], [0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 0, 6], [0, 0, -5, 0, 0, 0, -5, 0, 11, 0, 0, 0], [0, -1, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0], [0, 0, -18, 0, 0, 0, -18, 0, 6, 0, 0, 0], [0, 8, 0, 0, -3, 0, 0, -3, 0, 0, 5, 0], [-26, 0, 0, 0, 2, 6, 0, -2, 0, 0, 0, 0], [0, -7, 0, 0, 2, 0, 0, 2, 0, 0, 12, 0], [0, 0, 0, 0, 0, 0, 0, 0, 9, -7, 0, 0], [0, 0, -1, 0, 0, 0, -1, 0, -13, 4, 0, 0], [0, -5, 0, 0, -7, 0, 0, -7, 0, 0, -8, 0], [0, 0, 12, 3, 0, 0, -12, 0, 0, 0, 0, -3], [30, 0, 0, 0, -8, 4, 0, 8, 0, 0, 0, 0], [0, -15, 0, 0, 1, 0, 0, 1, 0, 0, -10, 0], [2, 0, 0, 0, 2, 0, 0, -2, 0, 0, 0, 0], [0, 0, 3, -2, 0, 0, -3, 0, 0, 0, 0, 2], [0, 0, 4, 0, 0, 0, 4, 0, 1, 13, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 2, -8, 0, 0], [0, 0, -2, -44, 0, 0, 2, 0, 0, 0, 0, -4], [0, 0, -7, 2, 0, 0, 7, 0, 0, 0, 0, -2], [0, -12, 0, 0, 8, 0, 0, 8, 0, 0, -4, 0], [0, -3, 0, 0, -4, 0, 0, -4, 0, 0, -8, 0], [0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, -16], [0, 0, -16, 0, 0, 0, -16, 0, -6, 16, 0, 0], [0, 0, -4, 5, 0, 0, 4, 0, 0, 0, 0, -9], [0, 8, 0, 0, 11, 0, 0, 11, 0, 0, 3, 0], [0, 0, -3, 0, 0, 0, -3, 0, -7, 4, 0, 0], [0, 0, 3, 0, 0, 0, 3, 0, 12, 0, 0, 0], [8, 0, 0, 0, -2, 10, 0, 2, 0, 0, 0, 0], [0, 0, -4, -12, 0, 0, 4, 0, 0, 0, 0, -8], [0, 0, 3, -4, 0, 0, -3, 0, 0, 0, 0, -12], [0, 0, -10, 0, 0, 0, -10, 0, -2, -4, 0, 0], [0, 0, -4, -28, 0, 0, 4, 0, 0, 0, 0, 8], [0, -4, 0, 0, 2, 0, 0, 2, 0, 0, 14, 0], [35, 0, 0, 0, 13, -9, 0, -13, 0, 0, 0, 0], [0, -16, 0, 0, -6, 0, 0, -6, 0, 0, -10, 0], [0, -5, 0, 0, 14, 0, 0, 14, 0, 0, 8, 0], [0, 0, -16, -30, 0, 0, 16, 0, 0, 0, 0, -10], [0, 0, 14, 0, 0, 0, 14, 0, -10, 4, 0, 0], [20, 0, 0, 0, -10, -2, 0, 10, 0, 0, 0, 0], [0, 0, 14, 0, 0, 0, 14, 0, -7, -9, 0, 0], [0, -21, 0, 0, -1, 0, 0, -1, 0, 0, -10, 0], [-19, 0, 0, 0, -9, 9, 0, 9, 0, 0, 0, 0], [0, 21, 0, 0, 1, 0, 0, 1, 0, 0, 8, 0], [0, 0, -2, 0, 0, 0, -2, 0, -10, 12, 0, 0], [0, 0, -2, 52, 0, 0, 2, 0, 0, 0, 0, -4], [12, 0, 0, 0, -16, 4, 0, 16, 0, 0, 0, 0], [0, 12, 0, 0, 4, 0, 0, 4, 0, 0, -10, 0], [0, 0, 7, 2, 0, 0, -7, 0, 0, 0, 0, 10], [25, 0, 0, 0, 19, -11, 0, -19, 0, 0, 0, 0], [-32, 0, 0, 0, -2, -2, 0, 2, 0, 0, 0, 0], [0, 0, -7, 0, 0, 0, -7, 0, 0, -12, 0, 0], [0, 0, 16, -32, 0, 0, -16, 0, 0, 0, 0, -4], [0, -12, 0, 0, 9, 0, 0, 9, 0, 0, -7, 0], [0, 0, -10, 0, 0, 0, -10, 0, 19, -3, 0, 0], [0, 0, -20, -3, 0, 0, 20, 0, 0, 0, 0, -1], [0, 0, -13, 0, 0, 0, -13, 0, 0, 18, 0, 0], [27, 0, 0, 0, 9, -9, 0, -9, 0, 0, 0, 0], [0, 0, 13, -14, 0, 0, -13, 0, 0, 0, 0, 6], [0, 0, 18, 0, 0, 0, 18, 0, -17, 3, 0, 0], [0, 0, -6, 12, 0, 0, 6, 0, 0, 0, 0, -4], [0, 16, 0, 0, 6, 0, 0, 6, 0, 0, -8, 0], [0, 0, 5, 4, 0, 0, -5, 0, 0, 0, 0, 4], [13, 0, 0, 0, -13, -7, 0, 13, 0, 0, 0, 0]]; aps := ConvertToHeckeField(raw_aps); chi := MakeCharacter_3840_f_Hecke(Universe(aps)); return ExtendMultiplicatively(weight, aps, chi); end function; // To make the newform (type ModFrm), type "MakeNewformModFrm_3840_2_f_l();". // This may take a long time! To see verbose output, uncomment the SetVerbose lines below. // The precision argument determines an initial guess on how many Fourier coefficients to use. // This guess is increased enough to uniquely determine the newform. function MakeNewformModFrm_3840_2_f_l(:prec:=12) chi := MakeCharacter_3840_f(); f_vec := qexpCoeffs(); Kf := Universe(f_vec); // SetVerbose("ModularForms", true); // SetVerbose("ModularSymbols", true); S := CuspidalSubspace(ModularForms(chi, 2)); S := BaseChange(S, Kf); maxprec := NextPrime(1999) - 1; while true do trunc_vec := Vector(Kf, [0] cat [f_vec[i]: i in [1..prec]]); B := Basis(S, prec + 1); S_basismat := Matrix([AbsEltseq(g): g in B]); if Rank(S_basismat) eq Min(NumberOfRows(S_basismat), NumberOfColumns(S_basismat)) then S_basismat := ChangeRing(S_basismat,Kf); f_lincom := Solution(S_basismat,trunc_vec); f := &+[f_lincom[i]*Basis(S)[i] : i in [1..#Basis(S)]]; return f; end if; error if prec eq maxprec, "Unable to distinguish newform within newspace"; prec := Min(Ceiling(1.25 * prec), maxprec); end while; end function; // To make the Hecke irreducible modular symbols subspace (type ModSym) // containing the newform, type "MakeNewformModSym_3840_2_f_l();". // This may take a long time! To see verbose output, uncomment the SetVerbose line below. // The default sign is -1. You can change this with the optional parameter "sign". function MakeNewformModSym_3840_2_f_l( : sign := -1) R := PolynomialRing(Rationals()); chi := MakeCharacter_3840_f(); // SetVerbose("ModularSymbols", true); Snew := NewSubspace(CuspidalSubspace(ModularSymbols(chi,2,sign))); Vf := Kernel([<7,R![64, 0, 128, 0, 24, 0, 1]>,<11,R![-64, 0, 96, 0, -32, 0, 1]>,<29,R![-12544, 0, 3120, 0, -108, 0, 1]>,<31,R![-64, -4, 8, 1]>],Snew); return Vf; end function;