login
A248270
Egyptian fraction representation of sqrt(44) (A010498) using a greedy function.
0
6, 2, 8, 122, 18919, 402739144, 764123173937021975, 2148666191962903360885805290461855276, 8622580654686644746427953833014483269744901669599325824509666827330296874
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[ Sq
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: A332092 A021163 A114866 * A201324 A107826 A078756
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Oct 04 2014
STATUS
approved