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.

A345686 a(n) = n! * Sum_{k=1..n} n/floor(n/k)^2.

This page as a plain text file.
%I A345686 #8 Jun 24 2021 13:40:13
%S A345686 1,5,38,222,1974,14640,154580,1476720,17753400,205430400,2924030592,
%T A345686 38559628800,623916216000,9701871379200,172359487872000,
%U A345686 3007238402488320,60362232844193280,1161408374590464000,25603215951785472000,547592177551491072000,12990145748633044992000
%N A345686 a(n) = n! * Sum_{k=1..n} n/floor(n/k)^2.
%H A345686 Mathoverflow, <a href="https://mathoverflow.net/questions/338432/an-asymptotic-formula-for-a-sum-involving-powers-of-floor-functions">An asymptotic formula for a sum involving powers of floor functions</a>, 2019.
%F A345686 a(n) ~ c * n^2 * n!, where c = Sum_{j>-1} 1/(j^3*(j+1)) = zeta(3) - Pi^2/6 + 1.
%t A345686 Table[n! * Sum[n/Floor[n/k]^2, {k, 1, n}], {n, 1, 25}]
%t A345686 Table[n*n!*(Sum[(Floor[n/j] - Floor[n/(j + 1)])/j^2, {j, 1, n}]), {n, 1, 25}]
%Y A345686 Cf. A345683.
%K A345686 nonn
%O A345686 1,2
%A A345686 _Vaclav Kotesovec_, Jun 23 2021