login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A201217
Numbers such that (closest square) = (closest cube).
3
0, 1, 2, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739
OFFSET
1,3
COMMENTS
A061023(a(n)) = 0; A053187(a(n)) = A201053(a(n));
A001014 is a subsequence (6th powers).
LINKS
PROG
(Haskell)
import Data.List (elemIndices)
a201217 n = a201217_list !! (n-1)
a201217_list = elemIndices 0 a061023_list
-- Reinhard Zumkeller, Nov 28 2011
CROSSREFS
Sequence in context: A080318 A002542 A264939 * A041391 A245783 A189057
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Nov 28 2011
STATUS
approved