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 A022694 #34 Sep 08 2022 08:44:46 %S A022694 1,-2,-1,-2,9,-2,10,-16,38,-98,53,-116,340,-434,463,-990,2378,-2792, %T A022694 3660,-7058,11454,-18900,24104,-36206,81623,-119400,128194,-248062, %U A022694 447066,-576154,880401,-1415926,2297516,-3724290,4854450,-7299306,13411402,-19129752,25135890,-42841396,71321016 %N A022694 Expansion of Product_{m>=1} (1 + m*q^m)^-2. %C A022694 This sequence is obtained from the generalized Euler transform in A266964 by taking f(n) = 2, g(n) = -n. - _Seiichi Manyama_, Dec 30 2017 %H A022694 Seiichi Manyama, <a href="/A022694/b022694.txt">Table of n, a(n) for n = 0..1000</a> %F A022694 G.f.: exp(-2*Sum_{j>=1} Sum_{k>=1} (-1)^(j+1)*k^j*x^(j*k)/j). - _Ilya Gutkovskiy_, Feb 08 2018 %t A022694 With[{nmax=50}, CoefficientList[Series[Product[1/(1+k*q^k)^2, {k,1,nmax}], {q, 0, nmax}],q]] (* _G. C. Greubel_, Feb 22 2018 *) %o A022694 (PARI) apply(x->round(x), Vec(prodinf(m=1, 1/(1+m*q^m)^2+O(q^50)))) \\ _Michel Marcus_, Dec 30 2017 %o A022694 (PARI) m=50; q='q+O('q^m); Vec(prod(n=1,m,1/(1+n*q^n)^2)) \\ _G. C. Greubel_, Feb 25 2018 %o A022694 (Magma) Coefficients(&*[1/(1+m*x^m)^2:m in [1..40]])[1..40] where x is PolynomialRing(Integers()).1; // _G. C. Greubel_, Feb 25 2018 %Y A022694 Column k=2 of A297325. %K A022694 sign %O A022694 0,2 %A A022694 _N. J. A. Sloane_