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.

A248294 Egyptian fraction representation of sqrt(70) (A010522) using a greedy function.

This page as a plain text file.
%I A248294 #6 Oct 24 2019 22:52:48
%S A248294 8,3,31,992,1245369,3302336350417,47523810173595463077699706,
%T A248294 15227181289661678179456803859437449044352739723867580,
%U A248294 290150350103448613285887398334236111049315440797539935407545942151460489216853681370927408862165807652692
%N A248294 Egyptian fraction representation of sqrt(70) (A010522) using a greedy function.
%t A248294 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[ 70]]
%Y A248294 Egyptian fraction representations of the square roots: A006487, A224231, A248235-A248322.
%Y A248294 Egyptian fraction representations of the cube roots: A129702, A132480-A132574.
%K A248294 nonn
%O A248294 0,1
%A A248294 _Robert G. Wilson v_, Oct 04 2014