I'm working on a proof problem that uses $\phi(n)$ and $\tau(n),$ and I am wondering if $\phi(n)$ and $\tau(n)$ are the factors of $n$/relatively prime numbers smaller than $n$, or the number of factors of $n$/relatively prime numbers smaller than $n$.
I just want some clarification so I don't mess up and use the wrong definition in my proof problem.
TL;DR: I'm basically asking if $\phi(n)$ and $\tau(n)$ are a list of numbers, or the # of numbers in that list.
$\phi(n)$ is the number of positive integers less or equal to $n$ that are relatively prime to $n$. For example, $\phi(5)=4$ since $\{1,2,3,4\}$ are all relatively prime to $5$. The function $\tau(n)$ is the number of positive divisors of $n$. For example, $\tau(5)=2$ since $5$ has $2$ divisors $\{1,5\}$.