OFFSET
0,1
COMMENTS
It follows from the definition that a(2i+1) = a(2i)+1 for all i.
From Jeffrey Shallit, Jun 06 2021: (Start)
This sequence consists of the nonzero distances between occurrences of 1 in the Fibonacci word A003849 (easily provable with the Walnut theorem-prover).
REFERENCES
Eric Friedman, Scott M. Garrabrant, Ilona K. Phipps-Morgan, A. S. Landsberg and Urban Larsson, Geometric analysis of a generalized Wythoff game, in Games of no Chance 5, MSRI publ. Cambridge University Press, date? [See Omega, a few lines below Table 2.]
PROG
(Python)
from math import isqrt
def A307295(n): return ((m:=(n>>1)+1)+isqrt(5*m**2)>>1)+m+(n&1) # Chai Wah Wu, Aug 10 2022
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Apr 12 2019
STATUS
approved