A248241 Egyptian fraction representation of sqrt(12) (A010469) using a greedy function.
3, 3, 8, 174, 47270, 3322246062, 13585339584457844199, 266643312158266377656241697792775202384, 221110316712057155914682414678073188192934894445719392090279403577596961625414
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[ 12]]
Comments