Where did you get 49236 + 49263 + 49326...
from? since Total[{4, 9, 2, 3, 6}]
is 24 and not 49236
? Each permutation have the same total, just different arrangement.
Either way, to sum them all, you can do
list = {4, 9, 2, 3, 6};
per = Permutations [list];
Length[per]*Total[list]
which gives 2880
I am trying to see if I do this for all 120 combinations I get a
Palindrome
I am not sure I understand the above. But to find total of list of numbers, the command is Total
.