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!)
A229185 Numbers incremented by their digit product produce a cube. 1
0, 4, 85, 168, 184, 212, 368, 549, 681, 919, 999, 1000, 1283, 1593, 2181, 3664, 4096, 4717, 6811, 7497, 8000, 9919, 10648, 12143, 15275, 15425, 21664, 21728, 21824, 27000, 39304, 42427, 42811, 47629, 50653, 63424, 64000, 74088, 79507, 84416, 103823, 110592 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
681 + 6*8*1 = 729 = 9^3.
MATHEMATICA
Select[Range[0, 100000], IntegerQ[(# + Times @@ IntegerDigits[#])^(1/3)] &] (* T. D. Noe, Sep 16 2013 *)
PROG
(Python)
def DP(n):
..p = 1
..for i in str(n):
....p *= int(i)
..return p
for n in range(10**4):
..k = 0
..P = n + DP(n)
..while P >= k**3:
....if P == k**3:
......print(n, end=', ')
......break
....k += 1
# Simplified by Derek Orr, Mar 12 2015
(PARI) for(n=0, 10^5, d=digits(n); P=n+prod(i=1, #d, d[i]); if(ispower(P, 3), print1(n, ", "))) \\ Derek Orr, Mar 12 2015
CROSSREFS
Sequence in context: A204245 A287248 A225164 * A360741 A184100 A059830
KEYWORD
nonn,easy,base
AUTHOR
Derek Orr, Sep 15 2013
EXTENSIONS
Prepended a(1) = 0 from Derek Orr, Mar 12 2015
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:05 EDT 2024. Contains 371798 sequences. (Running on oeis4.)