Given a set of variables, $x_1,x_2,\dots,x_n$ the Elementary Symmetric Polynomial $e_k(x_1,x_2,\dots,x_n)$ is the summation of all distinct products of $k$ distinct variables from $x_1,\dots,x_n$.
For example, $e_2(a,b,c) = ab+ac+bc$
$e_3(a,b,c,d)=abc+abd+acd+bcd$
$e_2(a,b,c,d) = ab+ac+ad+bc+bd+cd$
It is worth mentioning yet again that these are not permutations.
Old answer before clarification was added
A permutation is defined as a bijective function from a set to itself.
For example, if our set is $\{dog,cat\}$ we have the following two permutations:
$f~:~\{dog,cat\}\to\{dog,cat\}$ given by $f(dog)=dog$ and $f(cat)=cat$
$g~:~\{dog,cat\}\to\{dog,cat\}$ given by $g(dog)=cat$ and $g(cat)=dog$
Given an order on the elements of the set (say, $dog<cat$)These can be expressed more compactly as a sequence: $dog,cat$ and $cat,dog$.
$f$ and $g$ are the permutations here.
$f+g$ doesn't make sense. After all, what is $dog+cat$? We only cared that we had a set to begin with. We do not care in the slightest whether or not operations are defined on that set. Addition of permutations is generally not defined (at least not in the usual sense).
If your question was how to count the number of permutations of an $n$-element set, the answer is $n!=1\cdot 2\cdot 3\cdots (n-1)\cdot n$.
If your question was how to count the number of length $k$ strings made from elements of an $n$-element set with no repetition, the answer is $\frac{n!}{(n-k)!}$. For example, with the set $\{A,B,C\}$ and $k=2$ we have the following: $AB,AC,BC,BA,CA,CB$
If your question was how to count the number of subsets of size $k$ of an $n$-element set, the answer is $\binom{n}{k}=\frac{n!}{k!(n-k)!}$. For example, the two-element subsets of the set $\{A,B,C\}$ are $\{A,B\},\{A,C\},\{B,C\}$ and the three-element subsets of the set $\{A,B,C,D\}$ are $\{A,B,C\},\{A,B,D\},\{A,C,D\},\{B,C,D\}$
Given that the "permutations" you were "adding" together in your question match those I write in the last paragraph, my best guess to your question was that you meant to ask how to count the number of subsets of size $k$ from an $n$-element set. Until you confirm or edit and properly explain what it is you are wanting to ask however, noone can be sure.