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.

A332467 a(n) = n! * Sum_{d|n} mu(d) / (d!)^(n/d).

Original entry on oeis.org

1, 1, 5, 18, 119, 611, 5039, 37800, 361200, 3515149, 39916799, 471148524, 6227020799, 86497207369, 1307505443245, 20841060240000, 355687428095999, 6389731861649136, 121645100408831999, 2430526115576719732, 51090759661943327041, 1123451899297246814569
Offset: 1

Views

Author

Ilya Gutkovskiy, Feb 13 2020

Keywords

Crossrefs

Programs

  • Magma
    [Factorial(n)*&+[MoebiusMu(d) /(Factorial(d))^(n div d):d in Divisors(n)]:n in [1..22]]; // Marius A. Burtea, Feb 13 2020
  • Mathematica
    Table[n! DivisorSum[n, MoebiusMu[#]/(#!)^(n/#) &], {n, 1, 22}]
    nmax = 22; CoefficientList[Series[Sum[MoebiusMu[k] x^k/(k! - x^k), {k, 1, nmax}], {x, 0, nmax}], x] Range[0, nmax]! // Rest
  • PARI
    a(n)={sumdiv(n, d, moebius(d)*n!/(d!)^(n/d))} \\ Andrew Howroyd, Feb 13 2020
    

Formula

E.g.f.: Sum_{k>=1} Sum_{j>=1} mu(j) * x^(k*j) / (j!)^k.
E.g.f.: Sum_{k>=1} mu(k) * x^k / (k! - x^k).
a(n) ~ n!. - Vaclav Kotesovec, Feb 16 2020