login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A060432 Partial sums of A002024. 5
1, 3, 5, 8, 11, 14, 18, 22, 26, 30, 35, 40, 45, 50, 55, 61, 67, 73, 79, 85, 91, 98, 105, 112, 119, 126, 133, 140, 148, 156, 164, 172, 180, 188, 196, 204, 213, 222, 231, 240, 249, 258, 267, 276, 285, 295, 305, 315, 325, 335, 345, 355, 365, 375, 385, 396, 407, 418 (list; graph; refs; listen; history; internal format)
OFFSET

1,2

COMMENTS

In other words, first differences give A002024.

Equals A010054 convolved with [1, 2, 3,...] [From Gary W. Adamson (qntmpkt(AT)yahoo.com), Mar 16 2010]

LINKS

Harry J. Smith, Table of n, a(n) for n=1,...,1000

FORMULA

Let f(n) = floor(1/2 + sqrt(2*n)), then this function is S(n) = f(1) + f(2) + f(3) + ... + f(n).

a(n) is asymptotic to c*n^(3/2) with c=0.9428.... - Benoit Cloitre (benoit7848c(AT)orange.fr), Dec 18 2002

a(n) is asymptotic to c*n^{3/2} with c = (2/3)*sqrt(2) = .942809.... - Frank Adams-Watters (FrankTAW(AT)Netscape.net), Sep 07 2006

Set R=ROUND(SQRT(2*n),0), then a(n)=((6*n+1)*R-R^3)/6 [From Gerald Hillier (adr.rabbicat(AT)gmail.com), Nov 28 2008]

EXAMPLE

a(7) = 1 + 2 + 2 + 3 + 3 + 3 + 4 = 18

PROG

(PARI) f(n) = floor(1/2+sqrt(2*n)) for(n=1, 100, print1(sum(k=1, n, f(k)), ", "))

(PARI) { default(realprecision, 100); for (n=1, 1000, a=sum(k=1, n, floor(1/2 + sqrt(2*k))); write("b060432.txt", n, " ", a); ) } [From Harry J. Smith (hjsmithh(AT)sbcglobal.net), Jul 05 2009]

(Haskell)

a060432 n = sum $ zipWith (*) [n, n-1..1] a010054_list

-- Reinhard Zumkeller, Dec 17 2011

CROSSREFS

Cf. A002024.

A010054 [From Gary W. Adamson (qntmpkt(AT)yahoo.com), Mar 16 2010]

Cf. A006463.

Sequence in context: A052488 A076372 A005356 * A156023 A062009 A062484

Adjacent sequences:  A060429 A060430 A060431 * A060433 A060434 A060435

KEYWORD

easy,nonn

AUTHOR

Robert A. Stump (bobess(AT)netzero.net), Apr 06 2001

EXTENSIONS

More terms from Jason Earls (zevi_35711(AT)yahoo.com), Jan 08 2002

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 16 17:48 EST 2012. Contains 205939 sequences.