A117636 Start with x=4/3; repeatedly apply the map x -> x ceiling(x^2); sequence gives numerators of the resulting sequence of fractions.
4, 8, 64, 9728, 920599396352, 780210979034070658749485424425566208
Offset: 1
Examples
a(2) = 8, the numerator of (4/3) * ceiling ((4/3)^2) = (4/3) * 2 = 8/3. a(3) = 64, the numerator of (8/3) * ceiling ((8/3)^2) = (8/3) * 8 = 64/3.
Links
Programs
-
Mathematica
NestList[# Ceiling[#^2]&,4/3,6]//Numerator (* Harvey P. Dale, Mar 23 2019 *)
Extensions
Data, comments, and examples corrected by Harvey P. Dale, Mar 23 2019
Comments