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 A022715 #9 Jul 20 2018 03:47:12 %S A022715 1,-23,230,-1311,4853,-14191,44873,-154859,454043,-1139765,3085358, %T A022715 -8930785,22848752,-53971892,137067350,-351827803,829356379, %U A022715 -1915368585,4586707633,-10818772384,24533286122,-55227022631 %N A022715 Expansion of Product_{m>=1} (1+m*q^m)^-23. %H A022715 G. C. Greubel, <a href="/A022715/b022715.txt">Table of n, a(n) for n = 0..1000</a> %t A022715 With[{nmax = 50}, CoefficientList[Series[Product[(1 + k*q^k)^-23, {k, 1, nmax}], {q, 0, nmax}], q]] (* _G. C. Greubel_, Jul 20 2018 *) %o A022715 (PARI) m=50; q='q+O('q^m); Vec(prod(n=1,m,(1+n*q^n)^-23)) \\ _G. C. Greubel_, Jul 20 2018 %K A022715 sign %O A022715 0,2 %A A022715 _N. J. A. Sloane_