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!)
A341572 Fourier coefficients of the modular form (1/t_{6a}^3) * (1-6*sqrt(-3)/t_{6a}) * (1-12*sqrt(-3)/t_{6a})^(2/3) * F_{6a}^16. 0
0, 1, -21, -567, -2463, 8817, 48438, -86283, -163410, 345627, -2345707, 6501468, 1816668, -8886150, -21732951, 12436011, 28518921, 49387422, -71625060, 141851060, -257201382, -301878171, 225190881, 270088038, 1342569816, -1770304392, 1062627549, -600881166, -1830749005, -486568689 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Here, F_{6a} is the hypergeometric function F(1/3, 1/2; 1; 12*sqrt(-3)/t_{6a}). The definition given on page 23 in the linked manuscript has a minor typo where "t_{3A}" should be "t_{6a}". - Robin Visser, Jul 31 2023
LINKS
Masao Koike, Modular forms on non-compact arithmetic triangle groups, Unpublished manuscript [Extensively annotated with OEIS A-numbers by N. J. A. Sloane, Feb 14 2021. Sloane wrote 2005 on the first page but the internal evidence suggests 1997.] See page 31.
PROG
(Sage)
def a(n):
if n==0: return 0
theta2 = sum([1]+[2*x^(k^2/2) for k in range(1, n+1)])
theta3 = sum([2*x^((k^2 + k + 1/4)/2) for k in range(n)])
phix = theta2(x=x^4)*theta2(x=x^12) + theta3(x=x^4)*theta3(x=x^12)
phiy = theta2(x=x^4)*theta3(x=x^12) + theta3(x=x^4)*theta2(x=x^12)
f = (phiy^3*(phix^2-phiy^2)^3*phix*(phix^2-9*phiy^2)*(phix^2+3*phiy^2)^2)/8
return f.taylor(x, 0, n+1).coefficient(x^(n+1/2)) # Robin Visser, Jul 31 2023
CROSSREFS
Sequence in context: A292062 A194022 A183730 * A199254 A199199 A089457
KEYWORD
sign
AUTHOR
Robert C. Lyons, Feb 15 2021
EXTENSIONS
More terms from Robin Visser, Jul 31 2023
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 May 7 04:34 EDT 2024. Contains 372300 sequences. (Running on oeis4.)