login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A089606 Table T(n,k), n>=1 and k>=1; the k-th row is defined by :partial sums of the sequence 1, a(1), .., a(1), a(2), .., a(2), a(3), ..,a(3), a(4), ... each term repeated k times (with a(i)= T(i,k)). 2
1, 2, 1, 4, 2, 1, 8, 3, 2, 1, 16, 5, 3, 2, 1, 32, 7, 4, 3, 2, 1, 64, 10, 6, 4, 3, 2, 1, 128, 13, 8, 5, 4, 3, 2, 1, 256, 18, 10, 7, 5, 4, 3, 2, 1, 512, 23, 13, 9, 6, 5, 4, 3, 2, 1, 1024, 30, 16, 11, 8, 6, 5, 4, 3, 2, 1, 2048, 37, 19, 13, 10, 7, 6, 5, 4, 3, 2, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Row k=1 : 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, ...
Row k=2 : 1, 2, 3, 5, 7, 10, 13, 18, 23, 30, 37, 47, ...
Row k=3 : 1, 2, 3, 4, 6, 8, 10, 13, 16, 19, 23, 27, ...
Row k=4 : 1, 2, 3, 4, 5, 7, 9, 11, 13, 16, 19, 22, ...
Row k=5 : 1, 2, 3, 4, 5, 6, 8, 10, 12, 14, 16, 19, ...
LINKS
FORMULA
T(n,1) = A000079(n-1) = 2^(n-1).
T(n,2) = A033485(n).
T(n,3) = A089649(n).
T(n,4) = A089651(n).
MAPLE
T:= proc(n, k) option remember; `if`(n=1, 1,
T(n-1, k)+T(floor((n+k-2)/k), k))
end:
seq(seq(T(1+d-k, k), k=1..d), d=1..12); # Alois P. Heinz, Feb 24 2023
CROSSREFS
Sequence in context: A290650 A346874 A348533 * A140740 A091918 A177953
KEYWORD
easy,nonn,tabl
AUTHOR
Philippe Deléham, Jan 03 2004
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)