login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A215558 Cubes whose final digits are the cube root. 1
0, 1, 64, 125, 216, 729, 13824, 15625, 117649, 132651, 421875, 438976, 970299, 1953125, 15438249, 15813251, 52734375, 53157376, 124251499, 125751501, 242970624, 244140625, 420189749, 423564751, 669921875, 997002999, 1948441249, 52776573751, 83740234375 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
REFERENCES
Philip Carter & Ken Russell, Problem 31, p. 86, The Complete Book of Fun Maths, John Wiley, 2004.
LINKS
FORMULA
a(n) = A033819(n)^3.
EXAMPLE
6 * 6 * 6 = 216, which has "6" as rightmost digit.
MATHEMATICA
Select[Range[0, 100]^3, Mod[#, 10]==Surd[#, 3]||Mod[#, 100]==Surd[#, 3]&] (* Harvey P. Dale, Mar 03 2023 *)
PROG
(PARI) apply(x->x^3, select(x -> (x^3 - x) % 10^(#digits(x)) == 0, [0..99])) \\ David A. Corneth, Feb 11 2020
CROSSREFS
Sequence in context: A195678 A029777 A145464 * A324487 A258001 A255996
KEYWORD
nonn,base,easy
AUTHOR
Jonathan Vos Post, Aug 16 2012
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 00:30 EDT 2024. Contains 371917 sequences. (Running on oeis4.)