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!)
A276697 Integers m such that A048390(m) is a cube. 0
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1000, 1042, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 321213, 642426, 1000000, 1042000, 2000000, 3000000, 4000000, 5000000, 6000000, 7000000, 8000000, 9000000, 10121026, 302102103, 321213000, 604204206, 642426000, 1000000000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Integers that become cubes when their digits d are replaced with d^3.
Sequence is infinite, since 10^(3*k) is a term for all k.
LINKS
EXAMPLE
For m <= 9, 1-digit integers, A048390(m) = m^3 so all integers <= 9 are terms of this sequence.
PROG
(PARI) isok(n) = my(d = digits(n)); my(s = ""); for (k=1, #d, s = concat(s, Str(d[k]^3))); ispower(eval(s), 3);
(Magma) f:=func<n|StringToInteger(&cat[IntegerToString(h): h in Reverse([c^3: c in Intseq(n)])])>; [0] cat [k:k in [1..8000000]|IsPower(f(k), 3)]; // Marius A. Burtea, Feb 13 2020
CROSSREFS
Sequence in context: A070938 A070594 A121939 * A087036 A181720 A349423
KEYWORD
nonn,base
AUTHOR
Michel Marcus, Nov 06 2016
EXTENSIONS
a(34)-a(38) from Jinyuan Wang, Feb 13 2020
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 25 11:06 EDT 2024. Contains 371967 sequences. (Running on oeis4.)