This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A248270 #12 Jun 27 2025 01:03:16 %S A248270 6,2,8,122,18919,402739144,764123173937021975, %T A248270 2148666191962903360885805290461855276, %U A248270 8622580654686644746427953833014483269744901669599325824509666827330296874 %N A248270 Egyptian fraction representation of sqrt(44) (A010498) using a greedy function. %t A248270 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[ 44]] %Y A248270 Cf. A010498. %Y A248270 Egyptian fraction representations of the square roots: A006487, A224231, A248235-A248322. %Y A248270 Egyptian fraction representations of the cube roots: A129702, A132480-A132574. %K A248270 nonn %O A248270 0,1 %A A248270 _Robert G. Wilson v_, Oct 04 2014