OFFSET
0,2
COMMENTS
Numerators in the iteration f(0) = 0 and f(n) = f(n-1)^2 - 3/2. First values are 0, -3/2, 3/4, -15/16, -159/256, ... Denominators are A001146(n). We still don't know the behavior of this iteration (see links).
LINKS
Jordana Cepelewicz, ‘Entropy Bagels’ and Other Complex Structures Emerge From Simple Rules, Quanta Magazine, 27 February 2024.
Holly Krieger and Brady Haran, The Mystery of Hyperbolicity, Numberphile video (2024).
FORMULA
a(n) = a(n-1)^2 - 3*A058891(n).
MATHEMATICA
a[0]=0; a[n_]:=a[n]=a[n-1]^2-3*2^(2^(n-1)- 1); Array[a, 9, 0]
CROSSREFS
KEYWORD
sign
AUTHOR
Giorgos Kalogeropoulos, Mar 03 2024
STATUS
approved