자바스크립트의 Array 객체와 map을 연습하기 좋습니다.
Array
map
let solution = (x, n) => Array(n).fill(x).map((e, i) => e + (e*i));