OFFSET
0,2
LINKS
Seiichi Manyama, Table of n, a(n) for n = 0..379
M. Kaneko and D. Zagier, Supersingular j-invariants, hypergeometric series and Atkin's orthogonal polynomials, pp. 97-126 of D. A. Buell and J. T. Teitelbaum, eds., Computational Perspectives on Number Theory, Amer. Math. Soc., 1998
FORMULA
Theorem 4 on page 100 and Proposition 6 on page 117 of the Kaneko-Zagier reference gives an explicit formula and a recurrence for these polynomials. See Maple code.
From Vaclav Kotesovec, Apr 07 2018: (Start)
For n > 0, a(n) = (-1)^n * 2^(4*n + 1) * 3^(3*n) * Gamma(2*n - 1/6) / (Gamma(5/6) * Gamma(2*n)).
a(n) ~ (-1)^n * 2^(4*n + 5/6) * 3^(3*n) / (Gamma(5/6) * n^(1/6)). (End)
MAPLE
af:=proc(a, n) mul(a+i, i=0..n-1); end; A0:=n->(-12)^(3*n+1)*af(-1/12, n)*af(5/12, n)/(2*n-1)!;
MATHEMATICA
Flatten[{1, Table[FullSimplify[(-1)^n * 2^(4*n + 1) * 3^(3*n) * Gamma[2*n - 1/6] / (Gamma[5/6] * Gamma[2*n])], {n, 1, 20}]}] (* Vaclav Kotesovec, Apr 07 2018 *)
CROSSREFS
KEYWORD
sign
AUTHOR
N. J. A. Sloane, Feb 28 2009
STATUS
approved