OFFSET
0,2
COMMENTS
a(n) has length 2n+1.
LINKS
Robert Price, Table of n, a(n) for n = 0..999
Eric Weisstein's World of Mathematics, Rule 94
Stephen Wolfram, A New Kind of Science, Wolfram Media, 2002; Chapter 3.
Index entries for linear recurrences with constant coefficients, signature (0,10001,0,-10000).
FORMULA
Conjecture: a(n) = floor((1099*100^n + 9090)/990) + 1 for odd n > 1; a(n) = floor((1090*100^n + 10)/990) + 1 for even n > 1. - Karl V. Keller, Jr., Oct 25 2021
MATHEMATICA
rule=94; rows=20; ca=CellularAutomaton[rule, {{1}, 0}, rows-1, {All, All}]; (* Start with single black cell *) catri=Table[Take[ca[[k]], {rows-k+1, rows+k-1}], {k, 1, rows}]; (* Truncated list of each row *) Table[FromDigits[catri[[k]]], {k, 1, rows}] (* Binary Representation of Rows *) (* Robert Price, Feb 21 2016 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Hans Havermann, May 26 2002
EXTENSIONS
Corrected by Hans Havermann, Jan 07 2012
Edited by N. J. A. Sloane, Oct 20 2015 at the suggestion of Michael De Vlieger and Kevin Ryde
More terms from Robert Price, Dec 06 2015
STATUS
approved