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 A352762 #9 Jun 09 2022 08:45:40 %S A352762 1,-1,-2,-7,-11,-43,-65,-259,-146,-1798,826,-8116,17593,-35089,301903, %T A352762 -308464,3582403,157367,28816009,9388694,329375419,-61352008, %U A352762 2991009094,509592773,23675224255,1207374806,229200996508,-129896994130,2090952547882,-816324790165,14079091274800 %N A352762 Expansion of Product_{k>=1} 1 / (1 + 3^(k-1)*x^k). %F A352762 a(n) = Sum_{k=0..n} (-1)^k * p(n,k) * 3^(n-k), where p(n,k) is the number of partitions of n into k parts. %t A352762 nmax = 30; CoefficientList[Series[Product[1/(1 + 3^(k - 1) x^k), {k, 1, nmax}], {x, 0, nmax}], x] %t A352762 Table[Sum[(-1)^k Length[IntegerPartitions[n, {k}]] 3^(n - k), {k, 0, n}], {n, 0, 30}] %Y A352762 Cf. A032308, A242587, A261582, A292128, A300579, A344062, A352402, A352786. %K A352762 sign %O A352762 0,3 %A A352762 _Ilya Gutkovskiy_, Jun 08 2022