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 A022657 #9 Sep 08 2022 08:44:46 %S A022657 1,29,464,5423,51562,421660,3067243,20294258,124073136,709124530, %T A022657 3822833563,19575902886,95762136734,449596203788,2033731127704, %U A022657 8892638053645,37692168204784,155240829585546 %N A022657 Expansion of Product_{m>=1} (1+m*q^m)^29. %H A022657 G. C. Greubel, <a href="/A022657/b022657.txt">Table of n, a(n) for n = 0..1000</a> %t A022657 With[{nmax=50}, CoefficientList[Series[Product[(1+m*q^m)^29,{m,1,nmax}],{q,0,nmax}],q]] (* _G. C. Greubel_, Jul 18 2018 *) %o A022657 (PARI) m=50; q='q+O('q^m); Vec(prod(n=1,m,(1+n*q^n)^29)) \\ _G. C. Greubel_, Jul 18 2018 %o A022657 (Magma) Coefficients(&*[(1+m*x^m)^29:m in [1..40]])[1..50] where x is PolynomialRing(Integers()).1; // _G. C. Greubel_, Jul 18 2018 %K A022657 nonn %O A022657 0,2 %A A022657 _N. J. A. Sloane_