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.

Previous Showing 21-22 of 22 results.

A018046 Powers of cube root of 24 rounded to nearest integer.

Original entry on oeis.org

1, 3, 8, 24, 69, 200, 576, 1661, 4793, 13824, 39875, 115020, 331776, 957008, 2760488, 7962624, 22968182, 66251701, 191102976, 551236370, 1590040836, 4586471424, 13229672881, 38160980056, 110075314176, 317512149144, 915863521339, 2641807540224, 7620291579446
Offset: 0

Views

Author

Keywords

Crossrefs

Cf. powers of cube root of k rounded up: A017980 (k=2), A017983 (k=3), A017986 (k=4), A017989 (k=5), A017992 (k=6), A017995 (k=7), A018001 (k=9), A018004 (k=10), A018007 (k=11), A018010 (k=12), A018013 (k=13), A018016 (k=14), A018019 (k=15), A018022 (k=16), A018025 (k=17), A018028 (k=18), A018031 (k=19), A018034 (k=20), A018037 (k=21), A018040 (k=22), A018043 (k=23), this sequence (k=24).

Programs

  • Magma
    [Round(24^(n/3)): n in [0..40]]; // Vincenzo Librandi, Jan 09 2014
    
  • Mathematica
    Floor[(Power[24,(3)^-1])^Range[0,30]+1/2] (* Harvey P. Dale, Nov 13 2011 *)
    Table[Round[24^(n/3)], {n, 0, 40}] (* Vincenzo Librandi, Jan 09 2014 *)
  • Python
    from sympy import integer_nthroot
    def A018046(n): return -integer_nthroot(m:=3**n<<3*n,3)[0]+integer_nthroot(m<<3,3)[0] # Chai Wah Wu, Jun 18 2024

Extensions

More terms from Vincenzo Librandi, Jan 09 2014

A250023 Decimal expansion of the cube root of 1729.03.

Original entry on oeis.org

1, 2, 0, 0, 2, 3, 8, 3, 7, 8, 5, 6, 9, 1, 7, 1, 8, 1, 2, 3, 0, 5, 7, 3, 8, 1, 6, 6, 9, 9, 5, 0, 4, 4, 0, 4, 0, 7, 5, 0, 6, 8, 5, 1, 2, 2, 0, 5, 0, 8, 9, 2, 7, 5, 3, 6, 0, 2, 8, 8, 1, 3, 0, 7, 3, 3, 9, 5, 0, 2, 4, 2, 1, 2, 7, 6, 7, 9, 4, 4, 6, 5, 6, 3, 4, 3, 0, 2, 0, 1, 0, 9, 6, 8, 0, 8, 2, 0, 3, 2, 3, 0, 8, 4, 2
Offset: 2

Views

Author

Keywords

Comments

The problem of extracting this cube root pitted an abacus salesman against Nobel Prize winning physicist Richard Feynman one afternoon in Rio de Janeiro.
An algebraic number of degree 3 and denominator 10; minimal polynomial 100x^3 - 172903. - Charles R Greathouse IV, Apr 20 2016

Examples

			12.002383785691718123057381669950440407506851220508927536028813073395024212767944...
		

References

  • Richard Feynman and Ralph Leighton, Surely You're Joking, Mr. Feynman! (Adventures of a Curious Character), chapter "Lucky Numbers," W. W. Norton & Co., NY 1985, pp. 192-198.
  • Dana Mackenzie, The Universe in Zero Words, The Story of Mathematics as Told Through Equations, Princeton University Press, Princeton and Oxford, 2012, Introduction - The Abacist versus the Algorist, page 13.

Crossrefs

Programs

  • Mathematica
    RealDigits[ 1729030^(1/3), 10, 105][[1]] (* please notice the lack of a decimal point *)
  • PARI
    sqrtn(1729.03,3) \\ Charles R Greathouse IV, Apr 20 2016
Previous Showing 21-22 of 22 results.