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.

A346579 a(n) = (1/(5*n)) * Sum_{d|n} mu(n/d) * binomial(5*d,d).

Original entry on oeis.org

1, 4, 30, 240, 2125, 19776, 192129, 1922496, 19692504, 205444500, 2175519379, 23322637440, 252631900235, 2760767859780, 30400169155500, 336977763170048, 3757141504436392, 42107201575798248, 474084628585822412, 5359833703935374000, 60823006052351537106, 692556314455384443196
Offset: 1

Views

Author

Ilya Gutkovskiy, Jul 24 2021

Keywords

Comments

Inverse Euler transform of A002294.
Moebius transform of A261498.

Crossrefs

Programs

  • Mathematica
    Table[(1/(5 n)) Sum[MoebiusMu[n/d] Binomial[5 d, d], {d, Divisors[n]}], {n, 22}]
  • PARI
    a(n) = sumdiv(n, d, moebius(n/d)*binomial(5*d,d))/(5*n); \\ Michel Marcus, Jul 24 2021