Smarandache prime-digital sequence: Difference between revisions

m
m (→‎{{header|REXX}}: performed some code cleaning.)
m (→‎{{header|zkl}}: add result)
Line 363:
spds.walk(25).concat(",").println();
 
println("The hundredth term of the sequence is: ",spds.drop(100-25).value);</lang>
println("1000th item of this sequence is : ",spds.drop(1_000-spds.n).value);</lang>
{{out}}
<pre>
Line 369 ⟶ 370:
2,3,5,7,23,37,53,73,223,227,233,257,277,337,353,373,523,557,577,727,733,757,773,2237,2273
The hundredth term of the sequence is: 33223
1000th item of this sequence is : 3273527
</pre>
Anonymous user