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.

A307762 L.g.f.: log(Product_{k>=1} (1 + x^k/(1 + x))) = Sum_{k>=1} a(k)*x^k/k.

This page as a plain text file.
%I A307762 #24 Jun 02 2019 04:34:45
%S A307762 1,-1,7,-13,36,-67,141,-269,547,-1076,2146,-4231,8399,-16661,33177,
%T A307762 -66109,131921,-263353,526054,-1051108,2100840,-4199614,8396289,
%U A307762 -16788239,33570311,-67131715,134250784,-268483361,536940598,-1073843297,2147631641,-4295183165,8590249609,-17180328793
%N A307762 L.g.f.: log(Product_{k>=1} (1 + x^k/(1 + x))) = Sum_{k>=1} a(k)*x^k/k.
%F A307762 Product {k>=1} (1 + x^k/(1 + x)) = exp(Sum_{k>=1} a(k)*x^k/k).
%e A307762 L.g.f.: L(x) = x/1 - x^2/2 + 7*x^3/3 - 13*x^4/4 + 36*x^5/5 - 67*x^6/6 + 141*x^7/7 - 269*x^8/8 + ... .
%e A307762 exp(L(x)) = 1 + x + 2*x^3 - x^4 + 4*x^5 - 2*x^6 + 5*x^7 - x^8 + ... + A307602(n)*x^n + ... .
%o A307762 (PARI) N=66; x='x+O('x^N); Vec(x*deriv(log(prod(k=1, N, 1+x^k/(1+x)))))
%o A307762 (PARI) N=66; x='x+O('x^N); Vec(x*deriv(sum(k=1, N, x^k*sumdiv(k, d, (-1)^(d+1)/(d*(1+x)^d)))))
%Y A307762 Cf. A307602, A307674, A307675, A307761.
%K A307762 sign
%O A307762 1,3
%A A307762 _Seiichi Manyama_, Apr 27 2019