This commit is contained in:
filifa 2025-09-15 19:19:19 -04:00
parent 5b62e1e1ab
commit f3f87710cb
1 changed files with 4 additions and 0 deletions

View File

@ -53,6 +53,10 @@ func totientSieve(n uint) chan uint {
func totient(cmd *cobra.Command, args []string) { func totient(cmd *cobra.Command, args []string) {
for v := range totientSieve(totientN) { for v := range totientSieve(totientN) {
if v == 0 {
continue
}
fmt.Println(v) fmt.Println(v)
} }
} }