A329292 Least number m > 0 such that A101337(m)/m = n, or 0 if no such m exists.
1, 459, 3194922, 174961, 119564, 0, 13598
Offset: 1
Programs
Extensions
a(6)-a(7) from Chai Wah Wu, Nov 18 2019 using b-file of A306360
This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
m = 459, t = 4^3 + 5^3 + 9^3 = 918, t/m = 2.
Select[Range[500], Divisible[Plus @@ (IntegerDigits[#]^3), #] &] (* Amiram Eldar, May 11 2020 *)
isok(m) = my(d=digits(m)); sum(k=1, #d, d[k]^3) % m == 0; \\ Michel Marcus, May 14 2020
Comments