Prime numbers which contain 123: Difference between revisions

m
no edit summary
(Created page with "{{Draft task}} ;Task:Find prime numbers which contain '''123''', where '''n < 100,000''' <br><br> =={{header|Ring}}== <lang ring> load "stdlib.ring" row = 0 see "working.....")
 
mNo edit summary
Line 4:
 
<br><br>
 
 
=={{header|Julia}}==
<lang julia>using Primes
 
function containstringinbase(N, str, base)
arr = filter(n -> occursin(str, string(n, base=base)), primes(N))
println("Found $(length(arr)) positive integers < $N which contain the string $str in base $base representation:")
foreach(p -> print(rpad(p[2], 6), p[1] % 12 == 0 ? "\n" : ""), enumerate(arr))
end
 
containstringinbase(100_000, "123", 10)
</lang>{{out}}
<pre>
Found 46 positive integers < 100000 which contain the string 123 in base 10 representation:
1123 1231 1237 8123 11239 12301 12323 12329 12343 12347 12373 12377
12379 12391 17123 20123 22123 28123 29123 31123 31231 31237 34123 37123
40123 41231 41233 44123 47123 49123 50123 51239 56123 59123 61231 64123
65123 70123 71233 71237 76123 81233 81239 89123 91237 98123
</pre>
 
=={{header|Ring}}==
4,103

edits