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.

A358411 a(n) = Sum_{d|n} (d + n/d - 1)!/(d - 1)!.

Original entry on oeis.org

1, 4, 9, 34, 125, 762, 5047, 40468, 362949, 3629560, 39916811, 479007174, 6227020813, 87178331590, 1307674370745, 20922790251808, 355687428096017, 6402373709377404, 121645100408832019, 2432902008216565330, 51090942171709621965, 1124000727778086681754
Offset: 1

Views

Author

Seiichi Manyama, Nov 14 2022

Keywords

Crossrefs

Programs

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

Formula

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