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!)
A332332 Coefficients of L-series for elliptic curve "33a1": y^2 + x*y = x^3 + x^2 - 11*x. 1
1, 1, -1, -1, -2, -1, 4, -3, 1, -2, 1, 1, -2, 4, 2, -1, -2, 1, 0, 2, -4, 1, 8, 3, -1, -2, -1, -4, -6, 2, -8, 5, -1, -2, -8, -1, 6, 0, 2, 6, -2, -4, 0, -1, -2, 8, 8, 1, 9, -1, 2, 2, 6, -1, -2, -12, 0, -6, -4, -2, 6, -8, 4, 7, 4, -1, -4, 2, -8, -8, 0, -3, -14, 6 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,5
LINKS
FORMULA
Expansion of eta(q)^2*eta(q^11)^2 + 3*eta(q)*eta(q^3)*eta(q^11)*eta(q^33) + 3*eta(q^3)^2*eta(q^33)^2 in powers of q.
G.f. is a period 1 Fourier series which satisfies f(-1 / (33 t)) = 33 (t/i)^2 f(t) where q = exp(2 Pi i t).
a(n) is multiplicative with a(3^n) = (-1)^n, a(11^n) = 1. a(2^n) = A107920(n+1). a(7^n) = A168175(n).
EXAMPLE
G.f. = x + x^2 - x^3 - x^4 - 2*x^5 - x^6 + 4*x^7 - 3*x^8 + x^9 + ...
PROG
(PARI) {a(n) = if( n<1, 0, ellak( ellinit( [1, 1, 0, -11, 0], 1), n))};
(PARI) {a(n) = my(A, t1, t3); if( n<1, 0, n--; A = x * O(x^n); t1 = eta(x + A) * eta(x^11 + A); t3 = x * eta(x^3 + A) * eta(x^33 + A); polcoeff( t1^2 + 3*t1*t3 + 3*t3^2, n))};
(Magma) A := Basis( ModularForms( Gamma0(33), 2), 75); A[2] + A[3] - A[4] - A[5] - A[6];
(Sage)
def a(n):
return EllipticCurve("33a1").an(n) # Robin Visser, Sep 30 2023
CROSSREFS
Sequence in context: A258090 A112157 A265624 * A335259 A093682 A344767
KEYWORD
sign,mult
AUTHOR
Michael Somos, Feb 23 2020
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 19 18:00 EDT 2024. Contains 371797 sequences. (Running on oeis4.)