OFFSET
1,3
COMMENTS
Parsed into blocks of 1, 2, 4, 8,...term sums = powers of 12: (1, 12, 144,...).
A178569 is generated from a(2n) = 10*a(n); a(2n+1) = a(n) + a(n+1).
Polcoeff (1 + 10x + 11x^2 + ...) satisfies f(x)/f(x^2) = (1 + x + 10x^2).
Let q(x) = (1 + x + 10*x^2). Then (1 + 10x + 11x^2 + 100x^3 + ...) = q(x) * q(x^2) * q(x^4) * q(x^8) * ...
LINKS
Michael De Vlieger, Table of n, a(n) for n = 1..10000
FORMULA
a(2n) = a(n), a(2n+1) = 10*a(n) + a(n+1) = row 10 in the array of A178239.
Let M = an infinite lower triangular matrix with (1, 1, 10, 0, 0, 0,...) in each column, shifted down twice from the previous column. This sequence is Lim_{n->inf} M^n, the left-shifted vector considered as a sequence.
EXAMPLE
a(6) = a(3) = 10 since a(2n) = a(n);
a(7) = 111 = 10*a(n) + a(n+1) = 10*11 + 1.
MATHEMATICA
a[1] = 1; a[n_] := a[n] = If[EvenQ@ n, a[n/2], 10 a[(n - 1)/2] + a[(n - 1)/2 + 1]]; Array[a, 55] (* Michael De Vlieger, May 20 2017 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Gary W. Adamson, May 29 2010
EXTENSIONS
More terms from Ilya Gutkovskiy, May 18 2017
STATUS
approved