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 A327718 #15 Sep 23 2019 12:35:31 %S A327718 1,1,1,1,2,3,3,3,4,6,8,9,9,11,15,20,21,20,24,36,48,46,41,52,80,100,88, %T A327718 74,103,170,207,166,124,198,354,409,269,162,369,745,802,382,136,706, %U A327718 1585,1515,328,-178,1422,3481,2822,-387,-1283,3144,7816,4951,-3451,-4472,7694,18055 %N A327718 Expansion of Product_{k>=1} (1 + x^k/(1 + x^(2*k)/(1 + x^(3*k)))). %H A327718 Seiichi Manyama, <a href="/A327718/b327718.txt">Table of n, a(n) for n = 0..1000</a> %t A327718 nmax = 60; CoefficientList[Series[Product[(1 - x^(5*k)) / ((1 - x^k)*(1 + x^(2*k) + x^(3*k))), {k, 1, nmax}], {x, 0, nmax}], x] (* _Vaclav Kotesovec_, Sep 23 2019 *) %o A327718 (PARI) N=66; x='x+O('x^N); Vec(prod(k=1, N, 1+x^k/(1+x^(2*k)/(1+x^(3*k))))) %Y A327718 Convolution inverse of A327686. %Y A327718 Cf. A327716, A327717, A327719, A327720. %K A327718 sign,look %O A327718 0,5 %A A327718 _Seiichi Manyama_, Sep 23 2019