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.

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

Original entry on oeis.org

1, 6, 33, 376, 3245, 67716, 828583, 22050176, 420850809, 12580687900, 285351587411, 11736333558720, 302881333613053, 13450914411140584, 463402585399165875, 22345557703564558336, 827240617573764860177, 48442529220731147887020
Offset: 1

Views

Author

Seiichi Manyama, Feb 23 2023

Keywords

Crossrefs

Programs

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

Formula

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