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!)
A261439 Sum of the digits of n exceeds the sum of the digits of n^4. 1
124499, 1244990, 12449900, 124499000, 594959999, 1244990000, 1349969999, 5949599990, 12449900000, 13499699990, 59495999900 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
A comment by M. F. Hasler in A122484 shows that there are infinitely many terms not divisible by 10.
LINKS
PROG
(PARI) is(n)=sumdigits(n)>sumdigits(n^4) \\ Charles R Greathouse IV, Aug 18 2015
(Python)
from itertools import count, islice
def A261439_gen(startvalue=1): # generator of terms >= startvalue
return filter(lambda n: sum(int(d) for d in str(n)) > sum(int(d) for d in str(n**4)), count(max(startvalue, 1)))
A261439_list = list(islice(A261439_gen(), 3)) # Chai Wah Wu, Oct 20 2023
CROSSREFS
A122484 is the main sequence.
Sequence in context: A061734 A263081 A030639 * A182658 A282919 A100406
KEYWORD
nonn,base,more
AUTHOR
Jeppe Stig Nielsen, Aug 18 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 18 11:02 EDT 2024. Contains 371779 sequences. (Running on oeis4.)