login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A117596
Start with x=6/5; repeatedly apply the map x -> x*ceiling(x); sequence gives numerators of the resulting sequence of fractions.
2
6, 12, 36, 288, 16704, 55808064, 622908012647232, 77602878444025201997703040704, 1204441348559630271252918141028336694332989128001036771264, 290135792424028156178425357986052529062710984863337179470336908191924417208517059859206222048920739921330978585792
OFFSET
1,1
COMMENTS
After 18 terms the fractions become integers, the first of which has 57735 digits.
REFERENCES
N. J. A. Sloane, Seven Staggering Sequences, in Homage to a Pied Puzzler, E. Pegg Jr., A. H. Schoen and T. Rodgers (editors), A. K. Peters, Wellesley, MA, 2009, pp. 93-110.
LINKS
J. C. Lagarias and N. J. A. Sloane, Approximate squaring (pdf, ps), Experimental Math., 13 (2004), 113-128.
N. J. A. Sloane, Seven Staggering Sequences.
EXAMPLE
The sequence of fractions begins 6/5, 12/5, 36/5, 288/5, 16704/5, 55808064/5, 622908012647232/5, 77602878444025201997703040704/5, ... The first 17 denominators are 5, the rest are 1.
MATHEMATICA
f[x_] := x*Ceiling[x]; NestList[f, 6/5, 9] // Numerator (* Jean-François Alcover, Nov 18 2013 *)
CROSSREFS
Sequence in context: A038266 A298881 A256875 * A276601 A096377 A026083
KEYWORD
nonn,frac
AUTHOR
N. J. A. Sloane, Apr 07 2006
STATUS
approved