login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A050045
a(n) = a(n-1) + a(m) for n >= 4, where m = 2^(p+1) + 2 - n and p is the unique integer such that 2^p < n - 1 <= 2^(p+1), starting with a(1) = 1 and a(2) = a(3) = 2.
10
1, 2, 2, 4, 5, 9, 11, 13, 14, 27, 38, 47, 52, 56, 58, 60, 61, 121, 179, 235, 287, 334, 372, 399, 413, 426, 437, 446, 451, 455, 457, 459, 460, 919, 1376, 1831, 2282, 2728, 3165, 3591, 4004, 4403, 4775, 5109, 5396, 5631, 5810, 5931
OFFSET
1,2
LINKS
MAPLE
a := proc(n) option remember;
`if`(n < 4, [1, 2, 2][n], a(n - 1) + a(2^ceil(log[2](n - 1)) + 2 - n)):
end proc:
seq(a(n), n = 1..60); # Petros Hadjicostas, Nov 14 2019
MATHEMATICA
Fold[Append[#1, #1[[-1]] + #1[[#2]]] &, {1, 2, 2}, Flatten@Table[k, {n, 5}, {k, 2^n, 1, -1}]] (* Ivan Neretin, Sep 07 2015 *)
CROSSREFS
Cf. similar sequences with different initial conditions: A050025 (1,1,1), A050029 (1,1,2), A050033 (1,1,3), A050037 (1,1,4), A050041 (1,2,1), A050049 (1,2,3), A050053 (1,2,4), A050057 (1,3,1), A050061 (1,3,2), A050065 (1,3,3), A050069 (1,3,4).
Sequence in context: A308906 A337823 A051630 * A308955 A098386 A326447
KEYWORD
nonn
EXTENSIONS
Name edited by Petros Hadjicostas, Nov 14 2019
STATUS
approved