OFFSET
1,2
COMMENTS
Start with natural numbers, then A004201 Accept one, reject one, accept two, reject two, ..., but this new analogous sequence functionally composes this with A000045 Fibonacci numbers.
a(n+1) is also the length of the shortest prefix of the Fibonacci word (A003849) containing some length-n block twice. - Jeffrey Shallit, May 15 2018
Complement of A344953; i.e., positions of words in A344953 that end with 0. - Clark Kimberling, Jun 12 2021
LINKS
Yann Bugeaud and Dong Han Kim, On the b-ary expansions of log(1+1/a) and e, Arxiv preprint arXiv:1510.00282 [math.NT], October 1 2015.
Yann Bugeaud and Dong Han Kim, On the b-ary expansions of log(1+1/a) and e, Ann. Sc. Norm. Super. Pisa Cl. Sci. (5) 17 (2017), 931-947.
MATHEMATICA
L = {}; x = 1; Do[L = Join[L, Range[x, x + Fibonacci[n] - 1]]; x += 2 * Fibonacci[n], {n, 9}]; L (* Giovanni Resta, Jun 20 2016 *)
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Jonathan Vos Post, Nov 30 2007
EXTENSIONS
Data corrected by Giovanni Resta, Jun 20 2016
STATUS
approved