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.
%I A248285 #11 Oct 02 2024 09:15:10 %S A248285 7,2,5,22,1953,8757320,200363231947338,251498638872293007053426171621, %T A248285 66042587251601360877390227281939923689168739166891158256860, %U A248285 4700611214316865673372383919277278315652700484280159329574134292008149533706899635266740297016908819979207833123794661 %N A248285 Egyptian fraction representation of sqrt(60) (A010513) using a greedy function. %t A248285 Egyptian[nbr_] := Block[{lst = {IntegerPart[nbr]}, cons = N[ FractionalPart[ nbr], 2^20], denom, iter = 8}, While[ iter > 0, denom = Ceiling[ 1/cons]; AppendTo[ lst, denom]; cons -= 1/denom; iter--]; lst]; Egyptian[ Sqrt[ 60]] %Y A248285 Cf. A010513 (decimal expansion), A040052 (continued fraction). %Y A248285 Egyptian fraction representations of the square roots: A006487, A224231, A248235-A248322. %Y A248285 Egyptian fraction representations of the cube roots: A129702, A132480-A132574. %K A248285 nonn %O A248285 0,1 %A A248285 _Robert G. Wilson v_, Oct 04 2014