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.

A246578 Expansion of g.f. (Product_{r>=1} (1 - x^r))*x^(k^2)/Product_{i=1..k} ((1-x^i)^2) with k=4.

This page as a plain text file.
%I A246578 #13 Mar 09 2023 07:34:24
%S A246578 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,3,5,5,7,7,8,6,5,1,-2,-9,-15,
%T A246578 -23,-30,-39,-46,-52,-56,-58,-57,-51,-43,-29,-13,10,33,63,90,124,152,
%U A246578 184,207,233,245,258,255,250,227,202,157,110,45,-22,-104,-185,-278,-366
%N A246578 Expansion of g.f. (Product_{r>=1} (1 - x^r))*x^(k^2)/Product_{i=1..k} ((1-x^i)^2) with k=4.
%H A246578 Jason Fulman, <a href="https://doi.org/10.1090/S0273-0979-01-00920-X">Random matrix theory over finite fields</a>, Bull. Amer. Math. Soc. (N.S.) 39 (2002), no. 1, 51--85. MR1864086 (2002i:60012). See top of page 70.
%p A246578 fGL:=proc(k) local a,i,r;
%p A246578 a:=x^(k^2)/mul((1-x^i)^2,i=1..k);
%p A246578 a:=a*mul(1-x^r,r=1..101);
%p A246578 series(a,x,101);
%p A246578 seriestolist(%);
%p A246578 end;fGL(4);
%t A246578 With[{k = 4}, CoefficientList[Product[(1-x^r), {r, 1, nmax}]* x^(k^2)/Product[(1-x^i)^2, {i, 1, k}] + O[x]^nmax, x]] (* _Jean-François Alcover_, Mar 09 2023 *)
%Y A246578 k=0 gives A010815. Cf. A246575-A246578.
%K A246578 sign
%O A246578 0,19
%A A246578 _N. J. A. Sloane_, Aug 31 2014