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”).

A050035
a(n) = a(n-1) + a(m) for n >= 4, where m = 2*n - 2 - 2^(p+1) and p is the unique integer such that 2^p < n - 1 <= 2^(p+1), starting with a(1) = a(2) = 1 and a(3) = 3.
11
1, 1, 3, 4, 8, 9, 13, 22, 44, 45, 49, 58, 80, 125, 183, 308, 616, 617, 621, 630, 652, 697, 755, 880, 1188, 1805, 2435, 3132, 4012, 5817, 8949, 14766, 29532, 29533, 29537, 29546, 29568, 29613, 29671, 29796, 30104, 30721, 31351
OFFSET
1,3
LINKS
MATHEMATICA
Fold[Append[#1, #1[[-1]] + #1[[#2]]] &, {1, 1, 3}, Flatten@Table[2 k, {n, 5}, {k, 2^n}]] (* Ivan Neretin, Sep 06 2015 *)
PROG
(PARI) lista(nn) = {nn = max(nn, 3); my(va = vector(nn)); va[1] = 1; va[2] = 1; va[3] = 3; for(n=4, nn, va[n] = va[n-1] + va[2*(n - 1 - 2^logint(n-2, 2))]); va; } \\ Petros Hadjicostas, May 15 2020
CROSSREFS
Cf. A050027, A050031, A050039, A050043, A050047, A050051, A050055, A050059, A050063, A050067, A050071 (similar, but with different initial conditions).
Sequence in context: A379073 A219658 A047204 * A306901 A355477 A341578
KEYWORD
nonn
EXTENSIONS
Name edited by Petros Hadjicostas, May 15 2020
STATUS
approved