OFFSET
1,5
COMMENTS
The totatives of n are the numbers k <= n with gcd(k,n) = 1.
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
David Zmiaikou, Origamis and permutation groups, Thesis, 2011. See p. 65.
FORMULA
PROG
(PARI) a(n) = sum(k=1, n, (k\2)*(gcd(n, k)==1));
CROSSREFS
KEYWORD
nonn,look
AUTHOR
Michel Marcus, Feb 19 2017
STATUS
approved