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.

Showing 1-1 of 1 results.

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

Original entry on oeis.org

1, 6, 33, 328, 3245, 52056, 828583, 17328256, 389416329, 10105386400, 285351587411, 8955841614336, 302881333613053, 11126513414294656, 437935136609883375, 18455736024587862016, 827240617573764860177, 39353706314004951028224
Offset: 1

Views

Author

Seiichi Manyama, Jun 10 2022

Keywords

Crossrefs

Programs

  • Mathematica
    a[n_] := n! * DivisorSum[n, #^#/#! &]; Array[a, 18] (* Amiram Eldar, Jun 10 2022 *)
  • PARI
    a(n) = n!*sumdiv(n, d, d^d/d!);
    
  • PARI
    my(N=20, x='x+O('x^N)); Vec(serlaplace(sum(k=1, N, (k*x)^k/(k!*(1-x^k)))))

Formula

E.g.f.: Sum_{k>0} (k * x)^k/(k! * (1 - x^k)).
If p is prime, a(p) = p^p + p! = A053042(p).
Showing 1-1 of 1 results.