login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A115672 Coefficients of L-series for elliptic curve "35a3": y^2 + y = x^3 + x^2 - x. 1
1, 0, 1, -2, -1, 0, 1, 0, -2, 0, -3, -2, 5, 0, -1, 4, 3, 0, 2, 2, 1, 0, -6, 0, 1, 0, -5, -2, 3, 0, -4, 0, -3, 0, -1, 4, 2, 0, 5, 0, -12, 0, -10, 6, 2, 0, 9, 4, 1, 0, 3, -10, 12, 0, 3, 0, 2, 0, 0, 2, 8, 0, -2, -8, -5, 0, -4, -6, -6, 0, 0, 0, 2, 0, 1, -4, -3, 0, -1, -4, 1, 0, 12, -2, -3, 0, 3, 0, -12, 0, 5, 12, -4, 0, -2, 0, -1, 0, 6, -2, 6 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
LINKS
FORMULA
a(n) is multiplicative with a(5^e) = (-1)^e, a(7^e) = 1, a(p^e) = a(p) * a(p^(e-1)) - p * a(p^(e-2)) otherwise.
Expansion of (eta(q^5) * eta(q^7))^2 + (eta(q) * eta(q^35))^2 in powers of q. Expansion of a newform level 35 weight 2 and trivial character.
EXAMPLE
q + q^3 - 2*q^4 - q^5 + q^7 - 2*q^9 - 3*q^11 - 2*q^12 + 5*q^13 - q^15 + ...
PROG
(PARI) {a(n)=if( n<1, 0, ellak( ellinit([ 0, 1, 1, -1, 0]), n))} /* Michael Somos, Mar 03 2011 */
(PARI) {a(n) = local(A); if( n<1, 0, n--; A = x * O(x^n); polcoeff( (eta(x^5 + A) * eta(x^7 + A))^2 + x^2 * (eta(x + A) * eta(x^35 + A))^2, n))}
(Sage)
def a(n):
return EllipticCurve("35a3").an(n) # Robin Visser, Sep 30 2023
CROSSREFS
Cf. A106852(n) = a(3^n).
Sequence in context: A325960 A116422 A130161 * A079694 A339895 A068906
KEYWORD
sign,mult
AUTHOR
Michael Somos, Jan 29 2006
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 16:25 EDT 2024. Contains 371961 sequences. (Running on oeis4.)