OFFSET
1,3
COMMENTS
There are exactly 4 such numbers (Property 16 of Clerc).
LINKS
René-Louis Clerc, Quelques nombres de Niven-Harshad particuliers, 2023.
EXAMPLE
182380 = (1+8+2+3+8)*(1^4 + 8^4 + 2^4 + 3^4 + 8^4) = 22*8290.
MATHEMATICA
Select[Range[0, 10^7], #==Total[IntegerDigits[#]]*Total[IntegerDigits[#]^4]&] (* James C. McMahon, Jan 11 2024 *)
PROG
(PARI) niven14(k) = my(d=digits(k)); vecsum(d)*sum(i=1, #d, d[i]^4) == k;
for(k=1, 10^7, if(niven14(k)==1, print1(k, ", ")))
CROSSREFS
KEYWORD
nonn,base,fini,full,bref
AUTHOR
René-Louis Clerc, Jan 10 2024
STATUS
approved