OFFSET
1,3
LINKS
Nathaniel Johnston, Table of n, a(n) for n = 1..10000
David Applegate, Omar E. Pol and N. J. A. Sloane, The Toothpick Sequence and Other Sequences from Cellular Automata, 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.]
N. J. A. Sloane, Catalog of Toothpick and Cellular Automata Sequences in the OEIS
FORMULA
EXAMPLE
First few rows of the triangle:
1;
1, 2;
3, 2, 2;
1, 6, 2, 2;
3, 2, 6, 2, 2;
5, 6, 2, 6, 2, 2;
7, 10, 6, 2, 6, 2, 2;
1, 14, 10, 6, 2, 6, 2, 2;
3, 2, 14, 10, 6, 2, 6, 2, 2;
5, 6, 2, 14, 10, 6, 2, 6, 2, 2;
...
Example: Row 4 = (1, 6, 2, 2) = (1, 3, 1, 1) dot (1, 2, 2, 2); where (1 + 6 + 2 + 2) = A139250(4), i.e., 4th term in the Toothpick sequence.
MAPLE
for n from 1 to 8 do for k from 1 to n do print(T(n, k)); od:od: # Nathaniel Johnston, Apr 13 2011
CROSSREFS
KEYWORD
AUTHOR
Gary W. Adamson, May 19 2009
STATUS
approved