login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A170860 a(0) = 1, a(1) = 0; a(2^i + j) = a(j) + 3a(j + 1) for 0 <= j < 2^i. 1
1, 0, 1, 3, 1, 3, 10, 6, 1, 3, 10, 6, 10, 33, 28, 9, 1, 3, 10, 6, 10, 33, 28, 9, 10, 33, 28, 36, 109, 117, 55, 12, 1, 3, 10, 6, 10, 33, 28, 9, 10, 33, 28, 36, 109, 117, 55, 12, 10, 33, 28, 36, 109, 117, 55, 39, 109, 117, 136, 363, 460, 282, 91, 15, 1, 3, 10, 6, 10, 33, 28, 9, 10, 33, 28, 36 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
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.]
MAPLE
f:= proc(n) option remember;
local j;
j:= n - 2^ilog2(n);
procname(j) + 3*procname(j+1)
end proc:
f(0):= 1: f(1):= 0:
map(f, [$0..100]); # Robert Israel, Jul 10 2020
MATHEMATICA
Nest[Append[#1, #1[[#2 + 1]] + 3 #1[[#2 + 2]]] & @@ {#1, #2 - 2^Floor@ Log2@ #2} & @@ {#, Length@ #} &, {1, 0}, 82] (* Michael De Vlieger, Jul 10 2020 *)
CROSSREFS
Sequence in context: A128162 A257253 A067329 * A170845 A025238 A289066
KEYWORD
nonn,look
AUTHOR
N. J. A. Sloane, Jan 02 2010
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 12:15 EDT 2024. Contains 371969 sequences. (Running on oeis4.)