cp's OEIS Frontend

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.

A248264 Egyptian fraction representation of sqrt(38) (A010492) using a greedy function.

This page as a plain text file.
%I A248264 #6 Oct 20 2019 21:29:30
%S A248264 6,7,47,3569,13543237,813461964457561,7421316108781190769825230152615,
%T A248264 711253293828537228004750977021512448161146012227144474046636992,
%U A248264 2200029703970808428058199608953702518884689809814432014002394662129432102727790523039076189301028040002865113400234535183784056
%N A248264 Egyptian fraction representation of sqrt(38) (A010492) using a greedy function.
%t A248264 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[ 38]]
%Y A248264 Egyptian fraction representations of the square roots: A006487, A224231, A248235-A248322.
%Y A248264 Egyptian fraction representations of the cube roots: A129702, A132480-A132574.
%K A248264 nonn
%O A248264 0,1
%A A248264 _Robert G. Wilson v_, Oct 04 2014