Self numbers: Difference between revisions

Content deleted Content added
Aerobar (talk | contribs)
→‎{{header|RPL}}: sieveless algorithm
PureFox (talk | contribs)
m →‎{{header|Wren}}: Changed to Wren S/H
Line 2,178:
 
Unsurprisingly, very slow compared to the Go version as Wren is interpreted and uses floating point arithmetic for all numerical work.
<syntaxhighlight lang="ecmascriptwren">var sieve = Fn.new {
var sv = List.filled(2*1e9+9*9+1, false)
var n = 0