A loop program on programmable calculator indeed shows ∑{from n=2 to ∞}[e(n+1) ÷ (ln n)n]
converging to 315.248614; this value first appears at n = 50 and returns ever after.
Note however that n must run from 2 to 50 since n=1 yields e(1+1) ÷ (ln 1)1
or e2 ÷ 01 or e2 ÷ 0, which attempts division by 0.
By the Root Test, one would write lim(n→+∞)[e(n+1) ÷ (ln n)n]1/n as
lim(n→+∞) e1/n[en ÷ (ln n)n]1/n which translates to e0 • [e/(ln n)] or
1 • 0 or 0. The result of zero then indicates convergence.