A248272 Egyptian fraction representation of sqrt(46) (A010500) using a greedy function.
6, 2, 4, 31, 13905, 492036837, 305826422756315436, 925021938815488805990118508463313646, 9816702673371796111477307067848281658737547920701725975736611619650989298
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[ 46]]