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.

A174059 a(n) = ceiling(Sum_{k=1..n} sqrt(k)).

This page as a plain text file.
%I A174059 #11 May 06 2019 14:28:52
%S A174059 0,1,3,5,7,9,11,14,17,20,23,26,30,33,37,41,45,49,53,58,62,67,71,76,81,
%T A174059 86,91,96,102,107,113,118,124,130,135,141,147,153,160,166,172,179,185,
%U A174059 192,198,205,212,219,225,232,240,247,254,261,269,276,283,291,299,306
%N A174059 a(n) = ceiling(Sum_{k=1..n} sqrt(k)).
%H A174059 Robert Israel, <a href="/A174059/b174059.txt">Table of n, a(n) for n = 0..1000</a>
%F A174059 a(n) = 2/3*n^(3/2) + 1/2*n^(1/2) + O(1).  It appears that the absolute value of the difference is always less than 1. - _Robert Israel_, May 06 2019
%p A174059 map(ceil,ListTools:-PartialSums([seq((sqrt(k)),k=0..100)])); # _Robert Israel_, May 06 2019
%t A174059 s=0;lst={};Do[s+=Sqrt[n];AppendTo[lst,Ceiling[s]],{n,0,6!}];lst
%t A174059 Ceiling[Accumulate[Sqrt[Range[0,60]]]] (* _Harvey P. Dale_, Aug 29 2016 *)
%Y A174059 Cf. A025224, A174058
%K A174059 nonn
%O A174059 0,3
%A A174059 _Vladimir Joseph Stephan Orlovsky_, Mar 06 2010
%E A174059 Offset corrected by _Robert Israel_, May 06 2019