cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A292420 Expansion of a q-series used by Ramanujan in his Lost Notebook.

This page as a plain text file.
%I A292420 #22 Sep 17 2017 13:35:58
%S A292420 1,2,2,3,4,4,6,8,8,11,14,16,20,24,28,34,42,48,57,68,78,94,110,126,148,
%T A292420 172,198,230,266,304,351,404,460,526,602,684,780,888,1004,1140,1290,
%U A292420 1456,1646,1856,2088,2351,2644,2964,3326,3728,4168,4664,5212,5812,6484
%N A292420 Expansion of a q-series used by Ramanujan in his Lost Notebook.
%D A292420 Srinivasa Ramanujan, The Lost Notebook and Other Unpublished Papers, Narosa Publishing House, New Delhi, 1988, page 1, 1st equation with a=-1.
%H A292420 Robert Israel, <a href="/A292420/b292420.txt">Table of n, a(n) for n = 0..1000</a>
%F A292420 G.f. is the product of the g.f. of A000009 and A143064.
%F A292420 Given g.f. A(x), then A(x^2) = 1 / (1+x) + x / (1+x^3) + x^2 * (1+x^2) / ((1+x^3) * (1+x^5)) + x^3 * (1+x^2) / ((1+x^5) * (1+x^7)) + x^4 * (1+x^2) * (1+x^4) / ((1+x^5) * (1+x^7) * (1+x^9)) + ...
%e A292420 G.f. = 1 + 2*x + 2*x^2 + 3*x^3 + 4*x^4 + 4*x^5 + 6*x^6 + 8*x^7 + 8*x^8 + ...
%p A292420 N:= 200: # to get a(0)..a(N)
%p A292420 g143064:= add(x^k/mul(1+x^(2*j+1),j=0..k),k=0..2*N):
%p A292420 g000009:= mul(1+x^(2*k),k=1..N):
%p A292420 S:= series(g143064*g000009,x,2*N+2):
%p A292420 seq(coeff(S,x,2*j),j=0..N); # _Robert Israel_, Sep 17 2017
%t A292420 a[ n_] := If[ n < 0, 0, SeriesCoefficient[ QPochhammer[ x^2] / QPochhammer[ x] Sum[ (-1)^k x^(3 k^2 + 2 k) (1 + x^(2 k + 1)), {k, 0, Sqrt[n / 3]}], {x, 0, n}]];
%o A292420 (PARI) {a(n) = my(A); if( n<0, 0, A = x * O(x^n); polcoeff( eta(x^2 + A) / eta(x + A) * sum(k=0, sqrtint(n \ 3), (-1)^k * x^(3*k^2 + 2*k) * (1 + x^(2*k + 1)), A), n))};
%Y A292420 Cf. A000009, A143064, A292445.
%K A292420 nonn
%O A292420 0,2
%A A292420 _Michael Somos_, Sep 16 2017