A248268 Egyptian fraction representation of sqrt(42) (A010496) using a greedy function.
6, 3, 7, 220, 209746, 1800026104632, 11289682294671072755879655, 1247832270676194041105480584245717817404868332358363, 5623554373314472317858205865619051220489843727752125404940182021329874216730979924009375686764591034334
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[ 42]]
Comments