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.

A328774 Product_{n>=1} (1 + x^n)^a(n) = 1 + Sum_{n>=1} phi(n) * x^n, where phi = A000010.

This page as a plain text file.
%I A328774 #5 Oct 27 2019 13:44:09
%S A328774 1,1,1,1,2,-2,4,-3,4,-7,14,-21,30,-38,50,-79,128,-190,286,-419,598,
%T A328774 -895,1386,-2121,3178,-4733,7122,-10796,16414,-25011,38056,-57722,
%U A328774 87568,-133308,203618,-311318,475536,-726069,1109718,-1698185,2601166,-3987305,6114666,-9378656,14389676
%N A328774 Product_{n>=1} (1 + x^n)^a(n) = 1 + Sum_{n>=1} phi(n) * x^n, where phi = A000010.
%C A328774 Inverse weigh transform of A000010.
%p A328774 b:= proc(n, i) option remember; `if`(n=0, 1, `if`(i<1, 0,
%p A328774       add(binomial(a(i), j)*b(n-i*j, i-1), j=0..n/i)))
%p A328774     end:
%p A328774 a:= proc(n) option remember; numtheory[phi](n)-b(n, n-1) end:
%p A328774 seq(a(n), n=1..45);  # _Alois P. Heinz_, Oct 27 2019
%t A328774 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] = EulerPhi[n] - b[n, n - 1]; Array[a, 45]
%Y A328774 Cf. A000010, A299069, A320778.
%K A328774 sign
%O A328774 1,5
%A A328774 _Ilya Gutkovskiy_, Oct 27 2019