A248263 Egyptian fraction representation of sqrt(37) (A010491) using a greedy function.
6, 13, 172, 39216, 11016972197, 134283233503741443791, 18872603108304707287590736836379382332539, 773806129529571836706640292961775806691343199188996534429569375589794450652266246
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[ 37]]