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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A033156 a(1) = 1; for m >= 2, a(n) = a(n-1)+floor(a(n-1)/(n-1))+2. 2
1, 4, 8, 12, 17, 22, 27, 32, 38, 44, 50, 56, 62, 68, 74, 80, 87, 94, 101, 108, 115, 122, 129, 136, 143, 150, 157, 164, 171, 178, 185, 192, 200, 208, 216, 224, 232, 240, 248, 256, 264, 272, 280, 288, 296, 304, 312, 320, 328, 336, 344, 352, 360, 368, 376, 384, 392, 400, 408 (list; graph; refs; listen; history; internal format)
OFFSET

1,2

REFERENCES

M. A. Nyblom, Some curious sequences ..., Am. Math. Monthly 109 (#6, 200), 559-564, Th. 3.1.

LINKS

R. Stephan, Some divide-and-conquer sequences ...

R. Stephan, Table of generating functions

FORMULA

a(n) = n*(floor(log_2 n) + 3) - 2^((floor (log_2 n)) + 1).

a(n) = n+a(floor[n/2])+a(ceiling[n/2]) = n+min{a(k)+a(n-k):0<k<n} = n+A003314(n). - Henry Bottomley (se16(AT)btinternet.com), Jul 03 2002

A001855(n) + 2n-1. a(n) = b(n)+1 with b(0)=0, b(2n) = b(n)+b(n-1)+2n+2, b(2n+1) = 2b(n)+2n+3. - Ralf Stephan (ralf(AT)ark.in-berlin.de), Oct 24 2003

MAPLE

A033156 := proc(n) option remember; if n=1 then 1 else A033156(n-1)+floor(A033156(n-1)/(n-1))+2; fi; end;

CROSSREFS

Sequence in context: A189527 A106633 A002004 * A036573 A194274 A098573

Adjacent sequences:  A033153 A033154 A033155 * A033157 A033158 A033159

KEYWORD

nonn

AUTHOR

N. J. A. Sloane (njas(AT)research.att.com), Jun 05 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 07:39 EST 2012. Contains 205881 sequences.