OFFSET
1,5
COMMENTS
The sequence is eventually 8-periodic.
The variant with powers of 4 is 3-periodic: (0 0 1)*.
LINKS
Index entries for linear recurrences with constant coefficients, signature (0,0,0,0,0,0,0,1).
FORMULA
a(n) = a(n-8) for n >= 25.
EXAMPLE
a(1) = 0 by definition.
a(2) = 0 as there is only one occurrence of a(1) = 0 so far.
a(3) = 2^0 = 1 as a(2) = a(2-2^0).
a(4) = 0 as there is only one occurrence of a(3) = 1 so far.
a(5) = 2^1 = 2 as a(4) = a(4-2^1).
a(6) = 0 as there is only one occurrence of a(5) = 2 so far.
a(7) = 2^1 = 2 as a(6) = a(6-2^1).
a(8) = 2^1 = 2 as a(7) = a(7-2^1).
a(9) = 2^0 = 1 as a(8) = a(8-2^0).
a(10) = 0 as a(9) <> a(9-2^e) for any admissible e.
PROG
(PARI) { for (n=1, #a=vector(87), for (e=0, oo, m = n-1-d=2^e; if (m<1, break, a[n-1]==a[m], a[n]=d; break)); print1 (a[n]", ")) }
CROSSREFS
KEYWORD
nonn
AUTHOR
Rémy Sigrist, Apr 12 2022
STATUS
approved