A182668 The n-th Fourier coefficient divided by 11 of L_1(tau) defined by A. O. L. Atkin in 1967.
1, 27, 338, 2835, 18566, 101955, 490253, 2121679, 8424520, 31120519, 108082568, 355805844, 1117485594, 3366122862, 9767102571, 27398599802, 74534162438, 197147428426, 508187725366, 1279132093597, 3149343999710, 7596355910693, 17974782074306, 41775768918777
Offset: 1
Keywords
Examples
x + 27*x^2 + 338*x^3 + 2835*x^4 + 18566*x^5 + 101955*x^6 + 490253*x^7 + ...
Links
- G. C. Greubel, Table of n, a(n) for n = 1..1000
- A. O. L. Atkin, Proof of a conjecture of Ramanujan, Glasgow Math. J., 8 (1967), 14-32.
Programs
-
Mathematica
eta[q_] := q^(1/24)*QPochhammer[q]; CoefficientList[Series[ eta[q^121]/ eta[q]/11, {q, 0, 300}], q][[1 ;; -1 ;; 11]] (* G. C. Greubel, Aug 10 2018 *)
-
PARI
{a(n) = local(A); if( n<1, 0, n = 11*n - 5; A = x * O(x^n); polcoeff( eta(x^121 + A) / eta(x + A), n) / 11)}
Comments