OFFSET
1,1
COMMENTS
LINKS
Robert G. Wilson v, Table of n, a(n) for n = 1..1000
Augustine O. Munagi, Integer Compositions and Higher-Order Conjugation, J. Int. Seq., Vol. 21 (2018), Article 18.8.5.
Franck Ramaharo, A generating polynomial for the two-bridge knot with Conway's notation C(n,r), arXiv:1902.08989 [math.CO], 2019.
S. Sykora, Blazys' Expansions and Continued Fractions, Stans Library, Vol.IV, 2013, DOI 10.3247/sl4math13.001
S. Sykora, PARI/GP scripts for Blazys expansions and fractions, OEIS Wiki
FORMULA
e = 2+2/(2+2/(2+2/(3+3/(4+4/(5+...))))).
MATHEMATICA
BlazysExpansion[n_, mx_] := Block[{k = 1, x = n, lmt = mx + 1, s, lst = {}}, While[k < lmt, s = Floor[x]; x = 1/(x/s - 1); AppendTo[lst, s]; k++]; lst]; BlazysExpansion[E, 80] (* Robert G. Wilson v, May 22 2014 *)
PROG
(PARI)
default(realprecision, 100);
bx(x, nmax)={local(c, v, k); \\ Blazys expansion function
v = vector(nmax); c = x; for(k=1, nmax, v[k] = floor(c); c = v[k]/(c-v[k]); ); return (v); }
bx(exp(1), 100) \\ Execution; use high real precision
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Stanislav Sykora, Jan 06 2014
STATUS
approved