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.

A014819 a(n) = Sum_{k=1..n} floor(k^4/n).

Original entry on oeis.org

1, 8, 32, 88, 195, 377, 666, 1096, 1701, 2530, 3630, 5056, 6863, 9115, 11884, 15240, 19249, 24012, 29606, 36126, 43665, 52327, 62220, 73452, 86137, 100398, 116364, 134158, 153915, 175789, 199908, 226432, 255501, 287288, 321958, 359672, 400599, 444927, 492842
Offset: 1

Views

Author

Keywords

References

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

Crossrefs

Programs

  • Magma
    [(&+[Floor(k^4/n): k in [1..n]]): n in [1..40]]; // G. C. Greubel, Nov 21 2018
    
  • Maple
    f := m-> add( floor((nu)^4/m), nu=0..m): seq(f(n), n=1..40);
  • Mathematica
    Table[Sum[Floor[k^4/n], {k, 1, n}], {n, 1, 40}] (* G. C. Greubel, Nov 21 2018 *)
  • PARI
    vector(40, n, sum(k=1,n, floor(k^4/n))) \\ G. C. Greubel, Nov 21 2018
    
  • Sage
    [sum(floor(k^4/n) for k in (1..n)) for n in (1..40)] # G. C. Greubel, Nov 21 2018

Extensions

Title improved by Sean A. Irvine, Nov 21 2018