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!)
A306934 Coefficients of q-expansion of Eisenstein series G_{5/2}(tau) multiplied by 120. 4
1, -10, 0, 0, -70, -48, 0, 0, -120, -250, 0, 0, -240, -240, 0, 0, -550, -480, 0, 0, -528, -480, 0, 0, -720, -1210, 0, 0, -960, -720, 0, 0, -1080, -1440, 0, 0, -1750, -1200, 0, 0, -1680, -1920, 0, 0, -1680, -1488, 0, 0, -2160, -3370, 0, 0, -2640, -1680, 0, 0, -2400, -3360, 0, 0, -2880, -2640 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
X. Wang and D. Pei, Modular Forms with Integral and Half-Integral Weights, Science Press Beijing, Springer Berlin Heidelberg, 2012. x+432 pp.
D. Zagier, Modular Forms of One Variable, Notes based on a course given in Utrecht, 1991. See page 50 (erroneously gives a(5) = -72).
PROG
(Sage)
def a(n):
if n==0: return 1
if (n%4) not in [0, 1]: return 0
D = Integer(n).squarefree_part()
f = Integer(sqrt(n/D))
if (D%4) not in [0, 1]: D, f = 4*D, f//2
X = kronecker_character(D)
s = sum([moebius(d)*X(d)*d*sigma(f/d, 3) for d in f.divisors()])
return round((120*X.lfunction(100)(-1)*s).real()) # Robin Visser, Feb 24 2024
CROSSREFS
Sequence in context: A064511 A341809 A340947 * A003785 A287711 A287783
KEYWORD
sign
AUTHOR
N. J. A. Sloane, Mar 16 2019
EXTENSIONS
Corrected and more terms from Robin Visser, Feb 24 2024
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 05:19 EDT 2024. Contains 371782 sequences. (Running on oeis4.)