Thue-Morse: Difference between revisions

No change in size ,  2 years ago
m
m (→‎Excel LAMBDA: added a variant output type)
Line 732:
and also assuming the following generic bindings in the Name Manager for the WorkBook:
 
<lang lisp>APPENDCOLSAPPLYN
=LAMBDA(n,
LAMBDA(f,
LAMBDA(x,
IF(0 < n,
APPLYN(n - 1)(f)(
f(x)
),
x
)
)
)
 
 
APPENDCOLS
=LAMBDA(xs,
LAMBDA(ys,
Line 746 ⟶ 761:
),
NA()
)
)
)
 
 
APPLYN
=LAMBDA(n,
LAMBDA(f,
LAMBDA(x,
IF(0 < n,
APPLYN(n - 1)(f)(
f(x)
),
x
)
)
9,655

edits