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.

A117208 G.f. A(x) satisfies (1-x) = product_{n>=1} A(x^n).

Original entry on oeis.org

1, -1, 1, 0, 0, 1, -1, 2, -1, 1, 0, 1, 0, 1, 0, 0, 2, -1, 2, 0, 1, 0, 1, 1, 1, 0, 1, 1, 0, 2, 1, 1, 1, 0, 2, 0, 3, 0, 0, 2, 0, 3, 0, 3, -1, 2, 0, 4, 1, 1, 3, -3, 5, 1, 3, 0, 2, -1, 2, 4, 2, 4, -5, 6, -1, 2, 7, -2, 1, -1, 4, 3, 5, 2, -2, 1, 1, 8, 2, 4, -1, -3, 4, 9, 4, -2, 4, -7, 6, 7, 10, -1, -3, -1, 1, 11, 4, 8, -15, 2, 5, 7, 13, 1, -9, -7, 9
Offset: 0

Views

Author

Paul D. Hanna, Mar 03 2006

Keywords

Comments

Self-convolution inverse is A117209.

Crossrefs

Cf. A023900 (l.g.f.), A117209 (inverse); variants: A117210, A117211, A117212.

Programs

  • Mathematica
    nmax = 106; CoefficientList[ Series[ Product[ (1 - x^k)^(MoebiusMu[k]), {k, 1, nmax} ], {x, 0, nmax} ], x ] (* Stuart Clary, Apr 15 2006 *)
  • PARI
    {a(n)=polcoeff(exp(-sum(k=1,n+1,sumdiv(k,d,d*moebius(d))*x^k/k)+x*O(x^n)),n)}

Formula

G.f.: A(x) = exp( -Sum_{n>=1} A023900(n)*x^n/n ), where A023900 is the Dirichlet inverse of Euler totient function.
Euler transform of the negative of the Möbius function. - Stuart Clary, Apr 15 2006
G.f.: A(x) = product_{k>=1}(1 - x^k)^mu(k) where mu(k) is the Möbius function, A008683. - Stuart Clary, Apr 15 2006