A248285 Egyptian fraction representation of sqrt(60) (A010513) using a greedy function.
7, 2, 5, 22, 1953, 8757320, 200363231947338, 251498638872293007053426171621, 66042587251601360877390227281939923689168739166891158256860, 4700611214316865673372383919277278315652700484280159329574134292008149533706899635266740297016908819979207833123794661
Offset: 0
Keywords
Crossrefs
Programs
-
Mathematica
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]]