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.

Showing 1-2 of 2 results.

A117620 Start with x=4/3; repeatedly apply the map x -> (x^2) ceiling(x); sequence gives numerators of the resulting sequence of fractions.

Original entry on oeis.org

4, 32, 4096, 285212672, 3536203627938199896064, 27735467127437590594631628902073909856749798039036448735232
Offset: 1

Views

Author

Jonathan Vos Post, Apr 07 2006

Keywords

Comments

In this approximate cubing, does an iteration eventually yield an integer, after which denominators are 1? Fractions are 4/3, 32/9, 4096/81, 285212672/2187, 3536203627938199896064/1594323, 27735467127437590594631628902073909856749798039036448735232/2541865828329, 8393707510592229745861012598171776416393703955772365464679357805492895042198412632866136478758067686243059846017657263750451410617880163800261945260539460460740608/6461081889226673298932241.
a(9) has 1343 digits, and is too large for a b-file. - Robert Israel, Jun 15 2016

Examples

			a(4) = 285212672 because (4096/81)^2 * ceiling(4096/81) = (4096/81)^2 * ceiling(4096/81) = * ceiling(50.5679012) = (16777216/6561) * 51 = 285212672/2187.
		

Crossrefs

Programs

  • Maple
    x[1]:= 4/3:
    for n from 1 to 9 do x[n+1]:= x[n]^2*ceil(x[n]) od:
    seq(numer(x[i]),i=1..10); # Robert Israel, Jun 15 2016

Extensions

Erroneous term removed by Giovanni Resta, Jun 15 2016

A117636 Start with x=4/3; repeatedly apply the map x -> x ceiling(x^2); sequence gives numerators of the resulting sequence of fractions.

Original entry on oeis.org

4, 8, 64, 9728, 920599396352, 780210979034070658749485424425566208
Offset: 1

Views

Author

Jonathan Vos Post, Apr 08 2006

Keywords

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.

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.
		

Crossrefs

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
Showing 1-2 of 2 results.