Perfect totient numbers: Difference between revisions

Content added Content deleted
(→‎{{header|jq}}: gojq too)
Line 766:
'''Adapted from [[#Julia|Julia]]'''
{{works with|jq}}
'''Works with gojq, the Go implementation of jq'''
 
One small point of interest in the following implementation is the way the
cacheing of totient values is accomplished using a helper function (`cachephi`).
Line 828 ⟶ 830:
5571
</pre>
 
 
=={{header|Julia}}==