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.

A356011 a(n) = n! * Sum_{k=1..n} 1/(k! * floor(n/k)).

Original entry on oeis.org

1, 2, 6, 17, 80, 337, 2240, 14681, 117010, 1023941, 10900472, 108881665, 1375544846, 17732140805, 247041590476, 3605768497217, 59990390084690, 977383707751621, 18214603019184800, 337615168055209601, 6763842079452393622, 141262515443311046885
Offset: 1

Views

Author

Seiichi Manyama, Jul 23 2022

Keywords

Crossrefs

Row sums of A356013.

Programs

  • Mathematica
    Table[n! * Sum[1/(k!*Floor[n/k]), {k,1,n}], {n,1,25}] (* Vaclav Kotesovec, Aug 11 2025 *)
  • PARI
    a(n) = n!*sum(k=1, n, 1/(k!*(n\k)));
    
  • PARI
    my(N=30, x='x+O('x^N)); Vec(serlaplace(-sum(k=1, N, (1-x^k)*log(1-x^k)/k!)/(1-x)))

Formula

E.g.f.: -(1/(1-x)) * Sum_{k>0} (1 - x^k) * log(1 - x^k)/k!.
a(n) ~ exp(1) * (n-1)!. - Vaclav Kotesovec, Aug 11 2025