Ticket #691 (closed defect: fixed)
[with patch] .coefficients() for EisensteinSeries does not return requested coefficients
| Reported by: | mhansen | Owned by: | mhansen |
|---|---|---|---|
| Priority: | major | Milestone: | sage-2.8.5 |
| Component: | modular forms | Keywords: | |
| Cc: | Author(s): | ||
| Report Upstream: | Reviewer(s): | ||
| Merged in: | Work issues: |
Description
sage: e = G.gen() sage: E = EisensteinForms(e, 3) sage: v = E.eisenstein_series() sage: f = v[0] sage: f 15/11*zeta10^3 - 9/11*zeta10^2 - 26/11*zeta10 - 10/11 + q + (4*zeta10 + 1)*q^2 + (-9*zeta10^3 + 1)*q^3 + (16*zeta10^2 + 4*zeta10 + 1)*q^4 + (25*zeta10^3 - 25*zeta10^2 + 25*zeta10 - 24)*q^5 + O(q^6) sage: f.coefficients([0,1,2,3,4]) [15/11*zeta10^3 - 9/11*zeta10^2 - 26/11*zeta10 - 10/11, 1, 4*zeta10 + 1, -9*zeta10^3 + 1, 16*zeta10^2 + 4*zeta10 + 1] sage: f.coefficients([0,1,2,3,4]) [15/11*zeta10^3 - 9/11*zeta10^2 - 26/11*zeta10 - 10/11]
Attachments
Change History
Note: See
TracTickets for help on using
tickets.

