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!)
A291644 Numbers k such that 5 is the smallest decimal digit of k^3. 7
19, 423, 1786, 1966, 4053, 4235, 40326, 45882, 198823, 204782, 442693, 2131842, 3911966, 4061115, 4081435, 4603475, 8789299, 18027632, 40987223, 42647176, 44100092, 46097753, 88776682, 96439993, 96540315, 98954326, 190349299, 197967719, 423185632, 428896755, 463968436 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The first digit cannot be 5 or 6 and the last digit must be 2, 3, 5, 6, or 9. - Chai Wah Wu, Aug 28 2017
92 is the smallest number such that 6 is the smallest decimal digit of its cube (92^3 = 778688). - Chai Wah Wu, Dec 05 2017
LINKS
EXAMPLE
19 is in the sequence because 19^3 = 6859, the smallest decimal digit of which is 5.
PROG
(PARI) select(k->vecmin(digits(k^3))==5, vector(20000000, k, k))
(Python)
A291644_list = [k for k in range(1, 10**6) if min(str(k**3)) == '5'] # Chai Wah Wu, Aug 28 2017
CROSSREFS
Sequence in context: A089573 A284332 A121938 * A108145 A114350 A194730
KEYWORD
nonn,base
AUTHOR
Colin Barker, Aug 28 2017
EXTENSIONS
a(19)-a(31) from Chai Wah Wu, Aug 28 2017
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 19 18:58 EDT 2024. Contains 371798 sequences. (Running on oeis4.)