login
A248304
Egyptian fraction representation of sqrt(80) (A010532) using a greedy function.
0
8, 2, 3, 10, 92, 14491, 322744746, 254675920984809222, 106241547612751834703565555273467625, 63822696103699851476352795738044494170110650314781277998043037878782067
OFFSET
0,1
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[ 80]]
CROSSREFS
Egyptian fraction representations of the square roots: A006487, A224231, A248235-A248322.
Egyptian fraction representations of the cube roots: A129702, A132480-A132574.
Sequence in context: A388817 A388455 A247684 * A248303 A298571 A096257
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Oct 04 2014
STATUS
approved