cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A059177 Engel expansion of sqrt(10) = 3.16227...

This page as a plain text file.
%I A059177 #28 Apr 13 2018 11:15:17
%S A059177 1,1,1,7,8,12,20,86,94,118,160,179,287,315,22588,49419,66011,80779,
%T A059177 651661,1078390,1093865,4254100,27153191,108815387,220864645,
%U A059177 798937058,992296124,2196903274,17524412379,22828187385
%N A059177 Engel expansion of sqrt(10) = 3.16227...
%C A059177 Cf. A006784 for definition of Engel expansion.
%D A059177 F. Engel, Entwicklung der Zahlen nach Stammbruechen, Verhandlungen der 52. Versammlung deutscher Philologen und Schulmaenner in Marburg, 1913, pp. 190-191.
%H A059177 G. C. Greubel, <a href="/A059177/b059177.txt">Table of n, a(n) for n = 1..1000</a>
%H A059177 F. Engel, <a href="/A006784/a006784.pdf">Entwicklung der Zahlen nach Stammbruechen</a>, Verhandlungen der 52. Versammlung deutscher Philologen und Schulmaenner in Marburg, 1913, pp. 190-191. English translation by Georg Fischer, included with his permission.
%H A059177 P. Erdős and Jeffrey Shallit, <a href="http://www.numdam.org/item?id=JTNB_1991__3_1_43_0">New bounds on the length of finite Pierce and Engel series</a>, Sem. Theor. Nombres Bordeaux (2) 3 (1991), no. 1, 43-53.
%H A059177 <a href="/index/El#Engel">Index entries for sequences related to Engel expansions</a>
%t A059177 EngelExp[A_, n_] := Join[Array[1 &, Floor[A]], First@Transpose@
%t A059177 NestList[{Ceiling[1/Expand[#[[1]] #[[2]] - 1]], Expand[#[[1]] #[[2]] - 1]/1} &, {Ceiling[1/(A - Floor[A])], (A - Floor[A])/1}, n - 1]];
%t A059177 EngelExp[N[Sqrt[10], 7!], 10] (* modified by _G. C. Greubel_, Dec 26 2016 *)
%Y A059177 Cf. A010467.
%K A059177 nonn,easy,nice
%O A059177 1,4
%A A059177 _Mitch Harris_