OFFSET
1,1
COMMENTS
In this approximate cubing, suggested by T. D. Noe, the 4th iteration yields an integer. Fractions are 4/3, 8/3, 64/3, followed by integers 9728, 920599396352, etc.
LINKS
EXAMPLE
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.
MATHEMATICA
NestList[# Ceiling[#^2]&, 4/3, 6]//Numerator (* Harvey P. Dale, Mar 23 2019 *)
CROSSREFS
KEYWORD
easy,frac,nonn
AUTHOR
Jonathan Vos Post, Apr 08 2006
EXTENSIONS
Data, comments, and examples corrected by Harvey P. Dale, Mar 23 2019
STATUS
approved