cp's OEIS Frontend

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.

A328776 Product_{n>=1} (1 + x^n)^a(n) = 1 + Sum_{n>=1} sigma(n) * x^n, where sigma = A000203.

This page as a plain text file.
%I A328776 #4 Oct 28 2019 20:05:53
%S A328776 1,3,1,3,-3,2,-1,4,3,-8,-1,6,3,-4,-7,12,1,-6,7,0,-13,-13,27,13,-19,
%T A328776 -11,11,-21,-25,191,-81,-300,89,327,325,-745,-275,579,-255,1287,-453,
%U A328776 -2075,-583,2142,5985,-6698,-6661,6981,3045,3857,-7205,-2784,-5447,-4891,48547
%N A328776 Product_{n>=1} (1 + x^n)^a(n) = 1 + Sum_{n>=1} sigma(n) * x^n, where sigma = A000203.
%C A328776 Inverse weigh transform of A000203.
%t A328776 b[n_, i_] := b[n, i] = If[n == 0, 1, If[i < 1, 0, Sum[Binomial[a[i], j] b[n - i j, i - 1], {j, 0, n/i}]]]; a[n_] := a[n] = DivisorSigma[1, n] - b[n, n - 1]; Array[a, 55]
%Y A328776 Cf. A000203, A192065, A320780.
%K A328776 sign
%O A328776 1,2
%A A328776 _Ilya Gutkovskiy_, Oct 27 2019