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.

A061491 a(1) = 1, a(n) = least number such that the concatenation a(n)a(n-1)...a(1) is a cube.

Original entry on oeis.org

1, 133, 100330363, 100000000300330000300660363, 100000000000000000000000000300000000300330000000000000300000000600660000300660363
Offset: 1

Views

Author

Amarnath Murthy, May 06 2001

Keywords

Examples

			a(1) = 1, a(2) = 133, a(2)a(1) = 1331 = 11^3.
		

Crossrefs

Programs

  • Maple
    f:= proc(n) local j; 10^(-3^(n-1)/2-1)*(add(10^(3^j/2),j=0..n-1)^3 - add(10^(3^j/2),j=0..n-2)^3) end proc:
    seq(f(n),n=1..5); # Robert Israel, Jun 17 2024

Formula

a(n) = 10^(-3^(n-1)/2-1)*(Sum_{j=0..n-1}(10^(3^j/2))^3 - Sum_{j=0..n-2} (10^(3^j/2))^3). - Robert Israel, Jun 17 2024

Extensions

More terms from Ulrich Schimke (ulrschimke(AT)aol.com), Nov 06 2001
Corrected by Robert Israel, Jun 17 2024