cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A050061 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, a(2) = 3, and a(3) = 2.

This page as a plain text file.
%I A050061 #17 Nov 11 2019 01:44:05
%S A050061 1,3,2,5,6,11,13,16,17,33,46,57,63,68,70,73,74,147,217,285,348,405,
%T A050061 451,484,501,517,530,541,547,552,554,557,558,1115,1669,2221,2768,3309,
%U A050061 3839,4356,4857,5341,5792,6197,6545,6830,7047,7194
%N A050061 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, a(2) = 3, and a(3) = 2.
%H A050061 Ivan Neretin, <a href="/A050061/b050061.txt">Table of n, a(n) for n = 1..8193</a>
%p A050061 a := proc(n) option remember;
%p A050061 `if`(n < 4, [1, 3, 2][n], a(n - 1) + a(2^ceil(log[2](n - 1)) + 2 - n)); end proc;
%p A050061 seq(a(n), n = 1..50); # _Petros Hadjicostas_, Nov 11 2019
%t A050061 Fold[Append[#1, #1[[-1]] + #1[[#2]]] &, {1, 3, 2}, Flatten@Table[k, {n, 5}, {k, 2^n, 1, -1}]] (* _Ivan Neretin_, Sep 08 2015 *)
%Y A050061 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), A050045 (1,2,2), A050049 (1,2,3), A050053 (1,2,4), A050057 (1,3,1), A050065 (1,3,3), A050069 (1,3,4).
%K A050061 nonn
%O A050061 1,2
%A A050061 _Clark Kimberling_
%E A050061 Name edited by _Petros Hadjicostas_, Nov 11 2019