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 A022735 #9 Sep 08 2022 08:44:46 %S A022735 1,11,88,561,3124,15642,72303,312708,1280235,4999247,18739589, %T A022735 67751289,237202702,806779050,2673066187,8647158487,27365420159, %U A022735 84865235213,258285903491,772463952667,2272807540322,6585644471945 %N A022735 Expansion of Product_{m>=1} (1-m*q^m)^-11. %H A022735 G. C. Greubel, <a href="/A022735/b022735.txt">Table of n, a(n) for n = 0..1000</a> %t A022735 With[{nmax = 50}, CoefficientList[Series[Product[(1 - k*q^k)^-11, {k, 1, nmax}], {q, 0, nmax}], q]] (* _G. C. Greubel_, Jul 25 2018 *) %o A022735 (PARI) m=50; q='q+O('q^m); Vec(prod(n=1,m,(1-n*q^n)^-11)) \\ _G. C. Greubel_, Jul 25 2018 %o A022735 (Magma) n:=50; R<x>:=PowerSeriesRing(Integers(), n); Coefficients(R!(&*[(1/(1-m*x^m))^11:m in [1..n]])); // _G. C. Greubel_, Jul 25 2018 %K A022735 nonn %O A022735 0,2 %A A022735 _N. J. A. Sloane_