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.

A341834 Dirichlet g.f.: 1 / zeta(s)^8.

Original entry on oeis.org

1, -8, -8, 28, -8, 64, -8, -56, 28, 64, -8, -224, -8, 64, 64, 70, -8, -224, -8, -224, 64, 64, -8, 448, 28, 64, -56, -224, -8, -512, -8, -56, 64, 64, 64, 784, -8, 64, 64, 448, -8, -512, -8, -224, -224, 64, -8, -560, 28, -224, 64, -224, -8, 448, 64, 448, 64, 64, -8, 1792
Offset: 1

Views

Author

Ilya Gutkovskiy, Feb 21 2021

Keywords

Comments

Dirichlet inverse of A111218.

Crossrefs

Programs

  • Mathematica
    a[1] = 1; a[n_] := Times @@ ((-1)^#[[2]] Binomial[8, #[[2]]] &/@ FactorInteger[n]); Table[a[n], {n, 60}]
  • PARI
    for(n=1, 100, print1(direuler(p=2, n, (1 - X)^8)[n], ", ")) \\ Vaclav Kotesovec, Feb 22 2021

Formula

Multiplicative with a(p^e) = (-1)^e * binomial(8, e).
a(1) = 1; a(n) = -Sum_{d|n, d < n} tau_8(n/d) * a(d).