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!)
A236751 Positive integers n such that n^3 divided by the digital sum of n is a cube. 4
1, 8, 10, 26, 44, 62, 80, 100, 116, 134, 152, 170, 206, 224, 242, 260, 314, 332, 350, 404, 422, 440, 512, 530, 602, 620, 710, 800, 999, 1000, 1016, 1034, 1052, 1070, 1106, 1124, 1142, 1160, 1214, 1232, 1250, 1304, 1322, 1340, 1412, 1430, 1502, 1520, 1610 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
152 is in the sequence because the digital sum of 152 is 8, and 152^3/8 = 438976 = 76^3.
PROG
(PARI)
s=[]; for(n=1, 3000, d=sumdigits(n); if(n^3%d==0 && ispower(n^3\d, 3), s=concat(s, n))); s
CROSSREFS
Sequence in context: A347194 A271313 A161959 * A259713 A096516 A024869
KEYWORD
nonn,easy,base
AUTHOR
Colin Barker, Jan 30 2014
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 June 10 22:49 EDT 2024. Contains 373280 sequences. (Running on oeis4.)