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.
%I A022712 #9 Jul 20 2018 06:04:32 %S A022712 1,-20,170,-800,2415,-6404,21550,-71080,178295,-419200,1203282, %T A022712 -3294360,7476320,-17381780,44919500,-107605880,237628435,-544086720, %U A022712 1273805460,-2864694880,6256648862,-13710129840 %N A022712 Expansion of Product_{m>=1} (1+m*q^m)^-20. %H A022712 G. C. Greubel, <a href="/A022712/b022712.txt">Table of n, a(n) for n = 0..1000</a> %t A022712 With[{nmax = 50}, CoefficientList[Series[Product[(1 + k*q^k)^-20, {k, 1, nmax}], {q, 0, nmax}], q]] (* _G. C. Greubel_, Jul 20 2018 *) %o A022712 (PARI) m=50; q='q+O('q^m); Vec(prod(n=1,m,(1+n*q^n)^-20)) \\ _G. C. Greubel_, Jul 20 2018 %K A022712 sign %O A022712 0,2 %A A022712 _N. J. A. Sloane_