The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A355987 a(n) = n! * Sum_{k=1..n} 1/floor(n/k)!. 3
1, 3, 13, 61, 421, 2641, 23521, 203281, 2071441, 22407841, 286403041, 3453468481, 51122111041, 759194916481, 12216117513601, 203300293996801, 3811792426041601, 69634723878720001, 1444704854104512001, 29725332567567436801, 658231789483184716801 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
E.g.f.: (1/(1-x)) * Sum_{k>0} (1 - x^k) * (exp(x^k) - 1).
a(n) ~ c * n! * n, where c = 0.59962032... - Vaclav Kotesovec, Aug 03 2022
Conjecture: c = Sum_{k>=1} 1/((k+1)!*k) = 2 - exp(1) - A001620 + A091725. - Vaclav Kotesovec, Sep 24 2023
MATHEMATICA
a[n_] := n! * Sum[1/Floor[n/k]!, {k, 1, n}]; Array[a, 21] (* Amiram Eldar, Jul 22 2022 *)
PROG
(PARI) a(n) = n!*sum(k=1, n, 1/(n\k)!);
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(sum(k=1, N, (1-x^k)*(exp(x^k)-1))/(1-x)))
CROSSREFS
Sequence in context: A243014 A258799 A246689 * A141786 A122122 A093424
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jul 22 2022
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 21 02:29 EDT 2024. Contains 372720 sequences. (Running on oeis4.)