OFFSET
2,1
COMMENTS
The reference gives a generating function and the terms up to degree 18.
LINKS
Mike Roth and Noriko Yu, Mirror Symmetry for Elliptic Curves: The A-Model (Fermionic) Counting, Clay Mathematics Proceedings, Volume 11, 2010.
FORMULA
G.f.: (-6*E_2^6 + 15*E_2^4*E_4 + 4*E_2^3*E_6 - 12*E_2^2*E_4^2 - 12*E_2*E_4*E_6 + 7*E_4^3 + 4*E_6^2)/1492992, where E_k = 1 - (2*k/B_k)*Sum_{i > 0} Sum_{d dividing i} d^(k-1)*q^i is the Eisenstein series of weight k. - Robin Visser, Aug 08 2023
PROG
(Sage)
def a(n):
E2 = sum([1]+[-24*sigma(k)*x^k for k in range(1, n+1)])
E4 = sum([1]+[240*sigma(k, 3)*x^k for k in range(1, n+1)])
E6 = sum([1]+[-504*sigma(k, 5)*x^k for k in range(1, n+1)])
f = (-6*E2^6 + 15*E2^4*E4 + 4*E2^3*E6 - 12*E2^2*E4^2
- 12*E2*E4*E6 + 7*E4^3 + 4*E6^2)/1492992
return f.taylor(x, 0, n).coefficient(x^n) # Robin Visser, Aug 08 2023
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Aug 31 2010
EXTENSIONS
More terms from Robin Visser, Aug 08 2023
STATUS
approved