A348626 Greedy Egyptian fraction representation of 1 with square denominators.
2, 2, 2, 3, 3, 7, 12, 49, 340, 6153, 362275, 234314697, 4303312007019, 8064823505928103487, 21034270897045389505182033301, 13184627067084215135862894820778146400791573, 36011454158212923548860166370685543204871921069986403871775848271, 6820216143160044256325325882329406136711110111012515344838677137010956148075846307036940303634819
Offset: 1
Keywords
Links
- David desJardins, Table of n, a(n) for n = 1..24
- David desJardins, Plot of log(a(n))*(2/3)^n vs n
- David desJardins, Comma-separated list of first 40 terms
Programs
-
PARI
s=1; for(n=1,20, t=sqrtint(floor(1/s))+1; s-=1/t^2; print1(t,", "));
-
Python
from math import isqrt from fractions import Fraction def A348626List(): s = Fraction(1, 1) while True: t = isqrt(1 // s) + 1 yield t s -= Fraction(1, t * t) a = A348626List() print([next(a) for in range(18)]) # _Peter Luschny, Oct 26 2021
Comments