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!)
A169665 Numbers divisible by the sum of 4th powers of their digits. 6

%I #16 Jan 31 2021 02:37:57

%S 1,10,100,102,110,111,1000,1010,1011,1020,1100,1101,1110,1121,1122,

%T 1634,2000,2322,4104,5000,8208,9474,10000,10010,10011,10100,10101,

%U 10110,10200,10412,11000,11001,11010,11100,11210,11220,12502,12521,14758

%N Numbers divisible by the sum of 4th powers of their digits.

%H Amiram Eldar, <a href="/A169665/b169665.txt">Table of n, a(n) for n = 1..10000</a>

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/Digit.html">Digit</a>.

%F Numbers k such that A055013(k) | k.

%e 12521 is a term since 1^4 + 2^4 + 5^4 + 2^4 + 1^4 = 659, and 12521 = 19*659;

%e 89295 is a term since 8^4 + 9^4 + 2^4 + 9^4 + 5^4 = 17859, and 89295 = 5*17859.

%p A:= proc(n) add(d^4, d=convert(n, base, 10)) ; end proc: for n from 1 to 200000 do:if irem( n,A(n))=0 then printf(`%d, `,n):else fi:od:

%t Select[Range[15000], Divisible[#, Plus @@ (IntegerDigits[#]^4)] &] (* _Amiram Eldar_, Jan 31 2021 *)

%Y Cf. A034087, A034088, A055013, A169666.

%K nonn,base

%O 1,2

%A _Michel Lagneau_, Apr 05 2010

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 23 07:42 EDT 2024. Contains 371905 sequences. (Running on oeis4.)