A248320 Egyptian fraction representation of sqrt(97) (A010548) using a greedy function.
9, 2, 3, 65, 7151, 80022924, 30599691861141025, 941764378394111110366748005603120790, 1207204053149486733914427645845997404101266838687995330054616662472844167
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[ 97]]
Comments