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.

A174058 Round(Sum_{k=1..n} {sqrt(k)}).

Original entry on oeis.org

0, 1, 2, 4, 6, 8, 11, 13, 16, 19, 22, 26, 29, 33, 37, 40, 44, 49, 53, 57, 62, 66, 71, 76, 81, 86, 91, 96, 101, 107, 112, 118, 123, 129, 135, 141, 147, 153, 159, 165, 172, 178, 184, 191, 198, 204, 211, 218, 225, 232, 239, 246, 253, 261, 268, 275, 283, 290, 298, 306
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Mathematica
    s=0;lst={};Do[s+=Sqrt[n];AppendTo[lst,Round[s]],{n,0,6!}];lst
    Accumulate[Sqrt[Range[0,60]]]//Round (* Harvey P. Dale, Oct 16 2018 *)