login
A357936
a(n) is the least multiple of n that is a Niven (or Harshad) number.
2
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 110, 12, 117, 42, 30, 48, 102, 18, 114, 20, 21, 110, 207, 24, 50, 156, 27, 84, 261, 30, 372, 192, 132, 102, 70, 36, 111, 114, 117, 40, 410, 42, 516, 132, 45, 230, 423, 48, 392, 50, 102, 156, 954, 54, 110, 112, 114, 522, 531, 60
OFFSET
1,2
COMMENTS
Niven (or Harshad) numbers are divisible by the sum of their digits, and correspond to sequence A005349.
FORMULA
a(n) = n * A144261(n).
EXAMPLE
For n = 67, we have:
.
k 67*k Niven?
- ---- ------
1 67 No
2 134 No
3 201 Yes
so a(67) = 201.
MATHEMATICA
a[n_]:=Module[{k=1}, While[!Divisible[k*n, Total[IntegerDigits[k*n]]], k++]; k*n]; Array[a, 60]
PROG
(PARI) a(n, base=10) = forstep (m=n, oo, n, if (m%sumdigits(m, base)==0, return (m)))
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Rémy Sigrist, Oct 21 2022
STATUS
approved