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.

A014785 a(n) = Sum_{0<=k<=n} ceiling(k^2/n).

Original entry on oeis.org

1, 3, 6, 9, 13, 18, 24, 30, 35, 43, 52, 61, 69, 80, 92, 102, 113, 125, 140, 155, 169, 184, 202, 220, 231, 251, 270, 291, 309, 332, 354, 376, 397, 419, 446, 469, 493, 520, 550, 578, 601, 631, 660, 693, 721, 754, 788
Offset: 1

Views

Author

Keywords

References

  • M. Eichler and D. Zagier, The Theory of Jacobi Forms, Birkhauser, 1985, p. 103.

Crossrefs

Cf. A014817 (with floor), A177041 (with round).

Programs

  • Magma
    [&+[Ceiling(k^2/n):k in [0..n]]:n in [1..50]]; // Marius A. Burtea, Dec 31 2019
  • Maple
    f := n->sum( ceil(k^2/n), k=0..n);
  • Mathematica
    Table[Sum[Ceiling[k^2/n],{k,0,n}],{n,50}] (* Harvey P. Dale, Oct 24 2013 *)