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!)
A308708 Numbers k such that k^3 contains exactly three distinct digits; numbers with trailing zeros are excluded. 0
5, 6, 8, 9, 14, 15, 36, 62, 92, 101, 173, 192, 211, 888, 1001, 3543, 10001, 100001, 110011, 146796, 1000001, 10000001, 100000001, 1000000001, 10000000001 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
10^k + 1 (A000533(k)) is a term for k >= 2. - Jinyuan Wang, Aug 02 2019
LINKS
EXAMPLE
a(8) = 62 because 62^3 = 238328, which contains exactly three distinct digits.
MATHEMATICA
Select[Range[10001], Mod[#, 10] > 0 && Length@ Union@ IntegerDigits[#^3] == 3 &] (* Giovanni Resta, Sep 05 2019 *)
PROG
(PARI) is(k) = #vecsort(digits(k^3), , 8)==3 && k%10!=0; \\ Jinyuan Wang, Aug 02 2019
(Magma) [k:k in [1..10000001]| k mod 10 ne 0 and #Set(Intseq(k^3)) eq 3]; // Marius A. Burtea, Aug 02 2019
CROSSREFS
Sequence in context: A342781 A187843 A155146 * A125251 A271728 A247047
KEYWORD
base,nonn,more
AUTHOR
Andrej Jakobcic, Aug 01 2019
EXTENSIONS
More terms from Jinyuan Wang, Aug 02 2019
a(23)-a(25) from Jon E. Schoenfield, Aug 02 2019
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 July 3 08:04 EDT 2024. Contains 373966 sequences. (Running on oeis4.)