A072083 Numbers divisible by the 4th power of the sum of their digits in base 10.
1, 10, 100, 1000, 2000, 2401, 5000, 10000, 13122, 20000, 24010, 50000, 100000, 110000, 131220, 140000, 190000, 200000, 230000, 234256, 240100, 280000, 320000, 370000, 390625, 400221, 410000, 460000, 500000, 512000, 550000, 614656, 640000
Offset: 1
Examples
k=614656: sumdigits(614656)=28, q=1, since k=28*28*28*28.
Links
- Donovan Johnson, Table of n, a(n) for n = 1..1000
Programs
-
Magma
[k:k in [1..640000]| k mod &+Intseq(k)^4 eq 0]; // Marius A. Burtea, Mar 19 2020
-
Mathematica
sud[x_] := Apply[Plus, IntegerDigits[x]] Do[s=sud[n]^4; If[IntegerQ[n/s], Print[n]], {n, 1, 10000}] Select[Range[700000],Divisible[#,Total[IntegerDigits[ #]]^4]&] (* Harvey P. Dale, Jun 28 2011 *)
-
PARI
isok(m) = (m % sumdigits(m)^4) == 0; \\ Michel Marcus, Apr 02 2020
Comments