The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A331203 Numbers k such that k/(digsum(k)) is an integer cube. 0
1, 2, 3, 4, 5, 6, 7, 8, 9, 72, 243, 320, 486, 512, 640, 704, 832, 960, 1000, 1088, 1125, 2000, 2401, 3000, 3430, 4000, 4116, 4802, 5000, 5145, 5831, 6000, 6174, 6517, 6860, 7000, 7546, 8000, 8575, 8918, 9000, 9216, 9947, 19683, 35152, 35937, 41743, 43940, 46137 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
If m belongs to the sequence, then 1000*m also belongs to the sequence. - Rémy Sigrist, Jan 12 2020
LINKS
EXAMPLE
a(11) = 243: 243/(2 + 4 + 3) = 27 = 3^3.
a(12) = 320: 320/(3 + 2 + 0) = 64 = 4^3.
MATHEMATICA
Select[Range[100000], IntegerQ[CubeRoot[#/Total[IntegerDigits[#]]]] &]
PROG
(Magma) [n : n in[1 .. 1000] | IsIntegral((n/(&+Intseq(n)))^(1/3))];
(PARI) is(n) = my (k=n/sumdigits(n)); type(k)==type(42) && ispower(k, 3) \\ Rémy Sigrist, Jan 12 2020
CROSSREFS
Sequence in context: A024662 A153670 A229184 * A302173 A348799 A341909
KEYWORD
nonn,base
AUTHOR
K. D. Bajpai, Jan 12 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 May 22 18:14 EDT 2024. Contains 372758 sequences. (Running on oeis4.)