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.

A077744 Smallest number whose cube ends in n, or 0 if no such number exists. a(n) = A077743(n)^(1/3).

Original entry on oeis.org

1, 8, 7, 4, 5, 6, 3, 2, 9, 0, 71, 8, 17, 0, 0, 6, 73, 0, 39, 0, 41, 0, 47, 24, 5, 0, 3, 12, 9, 0, 11, 18, 77, 0, 0, 46, 33, 0, 79, 0, 81, 0, 7, 14, 0, 0, 63, 22, 49, 0, 51, 28, 37, 0, 0, 36, 93, 0, 19, 0, 21, 0, 67, 4, 0, 0, 23, 32, 89, 0, 91, 38, 97, 0, 15, 26, 53, 0, 59, 0, 61, 0, 27, 44, 0
Offset: 1

Views

Author

Amarnath Murthy, Nov 20 2002

Keywords

Examples

			a(13) = 17, a(10) = 0.
		

Crossrefs

Programs

  • Maple
    f:= proc(n) local m,r,x;
      m:= 10^(ilog10(n)+1);
      r:= [msolve(x^3=n,m)];
      if r = [] then 0 else min(map(t -> rhs(op(t)),r)) fi
    end proc:
    map(f, [$1..100]); # Robert Israel, Mar 05 2023

Formula

a(m*10^(3*k+1)) = a(m*10^(3*k+2)) = 0.

Extensions

More terms from Sascha Kurz, Jan 07 2003

A111447 Least cube ending in k where k is a possible end of a cube.

Original entry on oeis.org

0, 1, 512, 343, 64, 125, 216, 27, 8, 729, 357911, 512, 4913, 216, 389017, 59319, 68921, 103823, 13824, 125, 27, 1728, 729, 1331, 5832, 456533, 97336, 35937, 493039, 531441, 343, 2744, 250047, 10648, 117649, 132651, 21952, 50653, 46656, 804357
Offset: 0

Views

Author

Amarnath Murthy, Aug 03 2005

Keywords

Comments

Term corresponding to m^3 is m^3.

Examples

			6 can be the Least significant digit of a cube and 216 is the least cube ending in 6 hence term corresponding to 6 is 216 which also corresponds to 16 and 216. There are no cubes ending in 10,14,15,18,20,... etc.
		

Crossrefs

Cf. A111448.
Cf. A077743.

Extensions

More terms from Franklin T. Adams-Watters, Jul 27 2006
Showing 1-2 of 2 results.