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.

A050028 a(n) = a(n-1) + a(m) for n >= 4, where m = 2*n - 3 - 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) = 2.

This page as a plain text file.
%I A050028 #18 May 10 2020 22:59:53
%S A050028 1,1,2,3,5,6,8,13,21,22,24,29,37,58,82,119,201,202,204,209,217,238,
%T A050028 262,299,381,582,786,1003,1265,1646,2432,3697,6129,6130,6132,6137,
%U A050028 6145,6166,6190,6227,6309,6510,6714,6931,7193,7574,8360
%N A050028 a(n) = a(n-1) + a(m) for n >= 4, where m = 2*n - 3 - 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) = 2.
%H A050028 Ivan Neretin, <a href="/A050028/b050028.txt">Table of n, a(n) for n = 1..8193</a>
%p A050028 a := proc(n) option remember;
%p A050028       if n < 4 then return [1, 1, 2][n]; end if;
%p A050028       a(n - 1) + a(2*n - 4 - Bits:-Iff(n - 2, n - 2)); end proc;
%p A050028 seq(a(n), n = 1 .. 50); # _Petros Hadjicostas_, Nov 08 2019
%t A050028 Fold[Append[#1, #1[[-1]] + #1[[#2]]] &, {1, 1, 2}, Flatten@Table[2 k - 1, {n, 5}, {k, 2^n}]] (* _Ivan Neretin_, Sep 06 2015 *)
%o A050028 (PARI) lista(nn) = {nn = max(nn, 3); my(va = vector(nn)); va[1] = 1; va[2] = 1; va[3] = 2; for(n=4, nn, va[n] = va[n-1] + va[2*n - 3 - 2*2^logint(n-2, 2)]); va; } \\ _Petros Hadjicostas_, May 10 2020
%Y A050028 Cf. A050024 (similar, but with different initial conditions).
%K A050028 nonn
%O A050028 1,3
%A A050028 _Clark Kimberling_
%E A050028 Name edited by _Petros Hadjicostas_, Nov 08 2019