OFFSET
1,2
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
EXAMPLE
95 is in the sequence because 1*9 + 2*5 = 19 and 95 is divisible by 19.
1232 is in the sequence because 1*1 + 2*2 + 3*3 + 4*2 = 22 and 1232 is divisible by 22.
MATHEMATICA
Select[Range[1000], Divisible[#, Plus @@ ((d = IntegerDigits[#]) * Range[Length[d]])] &] (* Amiram Eldar, Feb 08 2021 *)
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Luc Stevens (lms022(AT)yahoo.com), Apr 22 2006
EXTENSIONS
Missing terms inserted by Amiram Eldar, Feb 08 2021
STATUS
approved