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.

A151574 a(0)=1, a(1)=2; a(2^i + j) = a(j) + 2*a(j+1) for 0 <= j < 2^i.

This page as a plain text file.
%I A151574 #11 Feb 24 2021 02:48:18
%S A151574 1,2,5,12,5,12,29,22,5,12,29,22,29,70,73,32,5,12,29,22,29,70,73,32,29,
%T A151574 70,73,80,169,216,137,42,5,12,29,22,29,70,73,32,29,70,73,80,169,216,
%U A151574 137,42,29,70,73,80,169,216,137,90,169,216,233,418,601,490,221,52,5,12,29,22,29
%N A151574 a(0)=1, a(1)=2; a(2^i + j) = a(j) + 2*a(j+1) for 0 <= j < 2^i.
%C A151574 Equals 2*A151572 + A151703.
%H A151574 Ivan Neretin, <a href="/A151574/b151574.txt">Table of n, a(n) for n = 0..8191</a>
%H A151574 David Applegate, Omar E. Pol and N. J. A. Sloane, <a href="/A000695/a000695_1.pdf">The Toothpick Sequence and Other Sequences from Cellular Automata</a>, Congressus Numerantium, Vol. 206 (2010), 157-191. [There is a typo in Theorem 6: (13) should read u(n) = 4.3^(wt(n-1)-1) for n >= 2.]
%H A151574 N. J. A. Sloane, <a href="/wiki/Catalog_of_Toothpick_and_CA_Sequences_in_OEIS">Catalog of Toothpick and Cellular Automata Sequences in the OEIS</a>
%t A151574 a = {1, 2}; Do[AppendTo[a, a[[j]] + 2 a[[j + 1]]], {i, 6}, {j, 2^i}]; a (* _Ivan Neretin_, Jun 28 2017 *)
%Y A151574 For the recurrence a(2^i+j) = C*a(j) + D*a(j+1), a(0) = A, a(1) = B for following values of (A B C D) see: (0 1 1 1) A118977, (1 0 1 1) A151702, (1 1 1 1) A151570, (1 2 1 1) A151571, (0 1 1 2) A151572, (1 0 1 2) A151703, (1 1 1 2) A151573, (1 2 1 2) A151574, (0 1 2 1) A160552, (1 0 2 1) A151704, (1 1 2 1) A151568, (1 2 2 1) A151569, (0 1 2 2) A151705, (1 0 2 2) A151706, (1 1 2 2) A151707, (1 2 2 2) A151708.
%K A151574 nonn
%O A151574 0,2
%A A151574 _N. J. A. Sloane_, May 25 2009