Count in factors: Difference between revisions

m
syntax highlighting fixup automation
No edit summary
m (syntax highlighting fixup automation)
Line 24:
 
=={{header|11l}}==
{{trans|C++}}<langsyntaxhighlight lang="11l">F get_prime_factors(=li)
I li == 1
R ‘1’
Line 43:
L(x) 1..17
print(‘#4: #.’.format(x, get_prime_factors(x)))
print(‘2144: ’get_prime_factors(2144))</langsyntaxhighlight>
 
{{out}}
Line 68:
 
=={{header|360 Assembly}}==
<langsyntaxhighlight lang="360asm">* Count in factors 24/03/2017
COUNTFAC CSECT assist plig\COUNTFAC
USING COUNTFAC,R13 base register
Line 141:
PG DS CL80 buffer
YREGS
END COUNTFAC</langsyntaxhighlight>
{{out}}
<pre style="height:20ex">
Line 187:
 
=={{header|Action!}}==
<langsyntaxhighlight Actionlang="action!">PROC PrintFactors(CARD a)
BYTE notFirst
CARD p
Line 220:
PutE()
OD
RETURN</langsyntaxhighlight>
{{out}}
[https://gitlab.com/amarok8bit/action-rosetta-code/-/raw/master/images/Count_in_factors.png Screenshot from Atari 8-bit computer]
Line 243:
 
;count.adb:
<langsyntaxhighlight Adalang="ada">with Ada.Command_Line, Ada.Text_IO, Prime_Numbers;
procedure Count is
Line 272:
exit when N > Max_N;
end loop;
end Count;</langsyntaxhighlight>
 
{{out}}
Line 292:
 
=={{header|ALGOL 68}}==
{{trans|Euphoria}}<langsyntaxhighlight ALGOL68lang="algol68">OP +:= = (REF FLEX []INT a, INT b) VOID:
BEGIN
[⌈a + 1] INT c;
Line 327:
OD;
print ((new line))
OD</langsyntaxhighlight>
{{out}}
<pre>1 = 1
Line 353:
=={{header|ARM Assembly}}==
{{works with|as|Raspberry Pi}}
<syntaxhighlight lang="arm assembly">
<lang ARM Assembly>
/* ARM assembly Raspberry PI */
/* program countFactors.s */
Line 735:
/***************************************************/
.include "../affichage.inc"
</syntaxhighlight>
</lang>
<pre>
Number 2144 : 2 2 2 2 2 67
Line 741:
=={{header|Arturo}}==
 
<langsyntaxhighlight lang="rebol">loop 1..30 'x [
fs: [1]
if x<>1 -> fs: factors.prime x
print [pad to :string x 3 "=" join.with:" x " to [:string] fs]
]</langsyntaxhighlight>
 
{{out}}
Line 782:
=={{header|AutoHotkey}}==
{{trans|D}}
<langsyntaxhighlight AutoHotkeylang="autohotkey">factorize(n){
if n = 1
return 1
Line 798:
Loop 22
out .= A_Index ": " factorize(A_index) "`n"
MsgBox % out</langsyntaxhighlight>
{{out}}
<pre>1: 1
Line 824:
 
=={{header|AWK}}==
<syntaxhighlight lang="awk">
<lang AWK>
# syntax: GAWK -f COUNT_IN_FACTORS.AWK
BEGIN {
Line 851:
return(substr(f,1,length(f)-1))
}
</syntaxhighlight>
</lang>
<p>output:</p>
<pre>
Line 878:
 
==={{header|Applesoft BASIC}}===
<langsyntaxhighlight ApplesoftBasiclang="applesoftbasic"> 100 FOR I = 1 TO 20
110 GOSUB 200"FACTORIAL
120 PRINT I" = "FA$
Line 897:
300 NEXT F
310 FA$ = MID$ (FA$,O)
320 RETURN </langsyntaxhighlight>
 
==={{header|BASIC256}}===
{{trans|Run BASIC}}
<langsyntaxhighlight lang="freebasic">for i = 1 to 20
print i; " = "; factorial$(i)
next i
Line 920:
end while
return factor$
end function</langsyntaxhighlight>
 
==={{header|True BASIC}}===
{{trans|Run BASIC}}
<langsyntaxhighlight lang="qbasic">FUNCTION factorial$ (num)
LET f$ = ""
LET x$ = ""
Line 944:
PRINT i; "= "; factorial$(i)
NEXT i
END</langsyntaxhighlight>
 
==={{header|Yabasic}}===
{{trans|Run BASIC}}
<langsyntaxhighlight lang="freebasic">for i = 1 to 20
print i, " = ", factorial$(i)
next i
Line 968:
wend
return f$
end sub</langsyntaxhighlight>
 
=={{header|BBC BASIC}}==
<langsyntaxhighlight lang="bbcbasic"> FOR i% = 1 TO 20
PRINT i% " = " FNfactors(i%)
NEXT
Line 989:
ENDWHILE
= LEFT$(f$, LEN(f$) - 3)
</syntaxhighlight>
</lang>
Output:
<pre> 1 = 1
Line 1,015:
Lists the first 100 entries in the sequence. If you wish to extend that, the upper limit is implementation dependent, but may be as low as 130 for an interpreter with signed 8 bit data cells (131 is the first prime outside that range).
 
<langsyntaxhighlight lang="befunge">1>>>>:.48*"=",,::1-#v_.v
$<<<^_@#-"e":+1,+55$2<<<
v4_^#-1:/.:g00_00g1+>>0v
>8*"x",,:00g%!^!%g00:p0<</langsyntaxhighlight>
 
{{out}}
Line 1,041:
=={{header|C}}==
Code includes a dynamically extending prime number list. The program doesn't stop until you kill it, or it runs out of memory, or it overflows.
<langsyntaxhighlight Clang="c">#include <stdio.h>
#include <stdlib.h>
 
Line 1,104:
}
return 0;
}</langsyntaxhighlight>
{{out}}
<pre>1 = 1
Line 1,125:
 
=={{header|C sharp|C#}}==
<langsyntaxhighlight lang="csharp">using System;
using System.Collections.Generic;
 
Line 1,170:
}
}
}</langsyntaxhighlight>
 
=={{header|C++}}==
<langsyntaxhighlight lang="cpp">#include <iostream>
#include <iomanip>
using namespace std;
Line 1,207:
cout << "\n\n";
return system( "pause" );
}</langsyntaxhighlight>
{{out}}
<pre>
Line 1,240:
 
=={{header|Clojure}}==
<langsyntaxhighlight lang="lisp">(ns listfactors
(:gen-class))
 
Line 1,260:
(doseq [q (range 1 26)]
(println q " = " (clojure.string/join " x "(factors q))))
</syntaxhighlight>
</lang>
{{Output}}
<pre>
Line 1,291:
 
=={{header|CoffeeScript}}==
<langsyntaxhighlight lang="coffeescript">count_primes = (max) ->
# Count through the natural numbers and give their prime
# factorization. This algorithm uses no division.
Line 1,330:
 
num_primes = count_primes 10000
console.log num_primes</langsyntaxhighlight>
 
=={{header|Common Lisp}}==
Auto extending prime list:
<langsyntaxhighlight lang="lisp">(defparameter *primes*
(make-array 10 :adjustable t :fill-pointer 0 :element-type 'integer))
 
Line 1,360:
 
(loop for n from 1 do
(format t "~a: ~{~a~^ × ~}~%" n (reverse (factors n))))</langsyntaxhighlight>
{{out}}
<pre>1:
Line 1,378:
...</pre>
Without saving the primes, and not all that much slower (probably because above code was not well-written):
<langsyntaxhighlight lang="lisp">(defun factors (n)
(loop with res for x from 2 to (isqrt n) do
(loop while (zerop (rem n x)) do
Line 1,386:
 
(loop for n from 1 do
(format t "~a: ~{~a~^ × ~}~%" n (reverse (factors n))))</langsyntaxhighlight>
 
=={{header|D}}==
<langsyntaxhighlight lang="d">int[] factorize(in int n) pure nothrow
in {
assert(n > 0);
Line 1,410:
foreach (i; 1 .. 22)
writefln("%d: %(%d × %)", i, i.factorize());
}</langsyntaxhighlight>
{{out}}
<pre>1: 1
Line 1,435:
===Alternative Version===
{{libheader|uiprimes}} Library ''uiprimes'' is a homebrew library to generate prime numbers upto the maximum 32bit unsigned integer range 2^32-1, by using a pre-generated bit array of [[Sieve of Eratosthenes]] (a dll in size of ~256M bytes :p ).
<langsyntaxhighlight lang="d">import std.stdio, std.math, std.conv, std.algorithm,
std.array, std.string, import xt.uiprimes;
 
Line 1,466:
foreach (i; 1 .. 21)
writefln("%2d = %s", i, productStr(factorize(i)));
}</langsyntaxhighlight>
 
=={{header|DCL}}==
Assumes file primes.txt is a list of prime numbers;
<langsyntaxhighlight DCLlang="dcl">$ close /nolog primes
$ on control_y then $ goto clean
$
Line 1,513:
$
$ clean:
$ close /nolog primes</langsyntaxhighlight>
{{out}}
<pre>$ @count_in_factors
Line 1,528:
 
=={{header|DWScript}}==
<langsyntaxhighlight lang="delphi">function Factorize(n : Integer) : String;
begin
if n <= 1 then
Line 1,545:
var i : Integer;
for i := 1 to 22 do
PrintLn(IntToStr(i) + ': ' + Factorize(i));</langsyntaxhighlight>
{{out}}
<pre>1: 1
Line 1,571:
 
=={{header|EchoLisp}}==
<langsyntaxhighlight lang="scheme">
(define (task (nfrom 2) (range 20))
(for ((i (in-range nfrom (+ nfrom range))))
(writeln i "=" (string-join (prime-factors i) " x "))))
 
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 1,604:
 
=={{header|Eiffel}}==
<syntaxhighlight lang="eiffel">
<lang Eiffel>
 
class
Line 1,671:
end
 
</syntaxhighlight>
</lang>
Test Output:
 
Line 1,701:
 
=={{header|Elixir}}==
<langsyntaxhighlight lang="elixir">defmodule RC do
def factor(n), do: factor(n, 2, [])
Line 1,712:
 
Enum.each(1..20, fn n ->
IO.puts "#{n}: #{Enum.join(RC.factor(n)," x ")}" end)</langsyntaxhighlight>
 
{{out}}
Line 1,739:
 
=={{header|Euphoria}}==
<langsyntaxhighlight lang="euphoria">function factorize(integer n)
sequence result
integer k
Line 1,766:
end for
printf(1, "%d\n", factors[$])
end for</langsyntaxhighlight>
{{out}}
<pre>1: 1
Line 1,793:
 
=={{header|F_Sharp|F#}}==
<langsyntaxhighlight lang="fsharp">let factorsOf (num) =
Seq.unfold (fun (f, n) ->
let rec genFactor (f, n) =
Line 1,803:
let showLines = Seq.concat (seq { yield seq{ yield(Seq.singleton 1)}; yield (Seq.skip 2 (Seq.initInfinite factorsOf))})
 
showLines |> Seq.iteri (fun i f -> printfn "%d = %s" (i+1) (String.Join(" * ", Seq.toArray f)))</langsyntaxhighlight>
{{out}}
<pre>1 = 1
Line 1,828:
 
=={{header|Factor}}==
<langsyntaxhighlight lang="factor">USING: io kernel math.primes.factors math.ranges prettyprint
sequences ;
 
Line 1,835:
[ " × " write ] [ pprint ] interleave nl ;
 
"1: 1" print 2 20 [a,b] [ .factors ] each</langsyntaxhighlight>
{{out}}
<pre>
Line 1,861:
 
=={{header|Forth}}==
<langsyntaxhighlight lang="forth">: .factors ( n -- )
2
begin 2dup dup * >=
Line 1,875:
1+ 2 ?do i . ." : " i .factors cr loop ;
 
15 main bye</langsyntaxhighlight>
 
=={{header|Fortran}}==
Line 1,882:
This algorithm creates a sieve of Eratosthenes, storing the largest prime factor to mark composites. It then finds prime factors by repeatedly looking up the value in the sieve, then dividing by the factor found until the value is itself prime. Using the sieve table to store factors rather than as a plain bitmap was to me a novel idea.
 
<syntaxhighlight lang="fortran">
<lang FORTRAN>
!-*- mode: compilation; default-directory: "/tmp/" -*-
!Compilation started at Thu Jun 6 23:29:06
Line 2,009:
call sieve(0) ! release memory
end program count_in_factors
</syntaxhighlight>
</lang>
 
=={{header|FreeBASIC}}==
<langsyntaxhighlight lang="freebasic">' FB 1.05.0 Win64
 
Sub getPrimeFactors(factors() As UInteger, n As UInteger)
Line 2,049:
Print
Print "Press any key to quit"
Sleep</langsyntaxhighlight>
 
{{out}}
Line 2,077:
=={{header|Frink}}==
Frink's factoring routines work on arbitrarily-large integers.
<langsyntaxhighlight lang="frink">i = 1
while true
{
println[join[" x ", factorFlat[i]]]
i = i + 1
}</langsyntaxhighlight>
 
=={{header|Fōrmulæ}}==
Line 2,093:
 
=={{header|Go}}==
<langsyntaxhighlight lang="go">package main
 
import "fmt"
Line 2,111:
fmt.Println()
}
}</langsyntaxhighlight>
{{out}}
<pre>
Line 2,128:
 
=={{header|Groovy}}==
<langsyntaxhighlight lang="groovy">def factors(number) {
if (number == 1) {
return [1]
Line 2,149:
((1..10) + (6351..6359)).each { number ->
println "$number = ${number.factors().join(' x ')}"
}</langsyntaxhighlight>
{{out}}
<pre>1 = 1
Line 2,173:
=={{header|Haskell}}==
Using <code>factorize</code> function from the [[Prime_decomposition#Haskell|prime decomposition]] task,
<langsyntaxhighlight lang="haskell">import Data.List (intercalate)
 
showFactors n = show n ++ " = " ++ (intercalate " * " . map show . factorize) n
-- Pointfree form
showFactors = ((++) . show) <*> ((" = " ++) . intercalate " * " . map show . factorize)</langsyntaxhighlight>
isPrime n = n > 1 && noDivsBy primeNums n
{{out}}
<small><langsyntaxhighlight lang="haskell">Main> print 1 >> mapM_ (putStrLn . showFactors) [2..]
1
2 = 2
Line 2,221:
121231231232164 = 2 * 2 * 253811 * 119410931
121231231232165 = 5 * 137 * 176979899609
. . .</langsyntaxhighlight></small>
The real solution seems to have to be some sort of a segmented offset sieve of Eratosthenes, storing factors in array's cells instead of just marks. That way the speed of production might not be diminishing as much.
 
=={{header|Icon}} and {{header|Unicon}}==
<langsyntaxhighlight Iconlang="icon">procedure main()
write("Press ^C to terminate")
every f := [i:= 1] | factors(i := seq(2)) do {
Line 2,233:
end
 
link factors</langsyntaxhighlight>
{{libheader|Icon Programming Library}}
[http://www.cs.arizona.edu/icon/library/src/procs/factors.icn factors.icn provides factors]
Line 2,256:
 
=={{header|IS-BASIC}}==
<langsyntaxhighlight ISlang="is-BASICbasic">100 PROGRAM "Factors.bas"
110 FOR I=1 TO 30
120 PRINT I;"= ";FACTORS$(I)
Line 2,276:
280 LET FACTORS$=F$(1:LEN(F$)-1)
290 END IF
300 END DEF</langsyntaxhighlight>
{{out}}
<pre> 1 = 1
Line 2,310:
 
=={{header|J}}==
'''Solution''':Use J's factoring primitive, <syntaxhighlight lang ="j">q:</langsyntaxhighlight>
'''Example''' (including formatting):<langsyntaxhighlight lang="j"> ('1 : 1',":&> ,"1 ': ',"1 ":@q:) 2+i.10
1 : 1
2 : 2
Line 2,322:
9 : 3 3
10: 2 5
11: 11</langsyntaxhighlight>
 
=={{header|Java}}==
{{trans|Visual Basic .NET}}
<langsyntaxhighlight lang="java">public class CountingInFactors{
public static void main(String[] args){
for(int i = 1; i<= 10; i++){
Line 2,366:
return n;
}
}</langsyntaxhighlight>
{{out}}
<pre>1 = 1
Line 2,390:
 
=={{header|JavaScript}}==
<langsyntaxhighlight lang="javascript">for(i = 1; i <= 10; i++)
console.log(i + " : " + factor(i).join(" x "));
 
Line 2,404:
}
return factors;
}</langsyntaxhighlight>
{{out}}
<pre>
Line 2,430:
reliable for integers up to and including 9,007,199,254,740,992 (2^53). However, "factors"
could be easily modified to work with a "BigInt" library for jq, such as [https://gist.github.com/pkoppstein/d06a123f30c033195841 BigInt.jq].
<langsyntaxhighlight lang="jq"># To take advantage of gojq's arbitrary-precision integer arithmetic:
def power($b): . as $in | reduce range(0;$b) as $i (1; . * $in);
 
Line 2,441:
if . == 1 then "1: 1" else empty end,
(range($m;$n) | "\(.): \([factors] | join("x"))");
</syntaxhighlight>
</lang>
'''Examples'''
<syntaxhighlight lang="jq">
<lang jq>
10 | count_in_factors,
"",
count_in_factors(2144; 2145),
"",
(2|power(100) | count_in_factors(.; .+ 2))</langsyntaxhighlight>
{{out}}
The output shown here is based on a run of gojq.
Line 2,470:
 
=={{header|Julia}}==
<langsyntaxhighlight lang="julia">using Primes, Printf
function strfactor(n::Integer)
n > -2 || return "-1 × " * strfactor(-n)
Line 2,482:
for n in lo:hi
@printf("%5d = %s\n", n, strfactor(n))
end</langsyntaxhighlight>
 
{{out}}
Line 2,533:
 
=={{header|Kotlin}}==
<langsyntaxhighlight lang="scala">// version 1.1.2
 
fun isPrime(n: Int) : Boolean {
Line 2,574:
for (i in list)
println("${"%4d".format(i)} = ${getPrimeFactors(i).joinToString(" * ")}")
}</langsyntaxhighlight>
 
{{out}}
Line 2,605:
 
=={{header|Liberty BASIC}}==
<syntaxhighlight lang="lb">
<lang lb>
'see Run BASIC solution
for i = 1000 to 1016
Line 2,623:
end if
wend
end function </langsyntaxhighlight>
{{out}}
<pre>
Line 2,646:
 
=={{header|Lua}}==
<langsyntaxhighlight Lualang="lua">function factorize( n )
if n == 1 then return {1} end
 
Line 2,669:
end
print ""
end</langsyntaxhighlight>
 
=={{header|M2000 Interpreter}}==
Decompose function now return array (in number decomposition task return an inventory list).
 
<syntaxhighlight lang="m2000 interpreter">
<lang M2000 Interpreter>
Module Count_in_factors {
Inventory Known1=2@, 3@
Line 2,730:
}
Count_in_factors
</syntaxhighlight>
</lang>
 
=={{header|M4}}==
<langsyntaxhighlight M4lang="m4">define(`for',
`ifelse($#,0,``$0'',
`ifelse(eval($2<=$3),1,
Line 2,749:
 
for(`y',1,25,1, `wby(y)
')</langsyntaxhighlight>
 
{{out}}
Line 2,781:
 
=={{header|Maple}}==
<langsyntaxhighlight lang="maple">factorNum := proc(n)
local i, j, firstNum;
if n = 1 then
Line 2,804:
printf("%2a: ", i);
factorNum(i);
end do;</langsyntaxhighlight>
{{out}}
<pre>
Line 2,820:
 
=={{header|Mathematica}} / {{header|Wolfram Language}}==
<langsyntaxhighlight Mathematicalang="mathematica">n = 2;
While[n < 100,
Print[Row[Riffle[Flatten[Map[Apply[ConstantArray, #] &, FactorInteger[n]]],"*"]]];
n++]</langsyntaxhighlight>
 
=={{header|NetRexx}}==
{{trans|Java}}
<langsyntaxhighlight NetRexxlang="netrexx">/* NetRexx */
options replace format comments java crossref symbols nobinary
 
Line 2,879:
end
return
</syntaxhighlight>
</lang>
{{out}}
<pre style="height: 30em;overflow: scroll; font-size: smaller;">
Line 2,957:
=={{header|Nim}}==
{{trans|C}}
<langsyntaxhighlight lang="nim">var primes = newSeq[int]()
 
proc getPrime(idx: int): int =
Line 2,995:
if first > 0: echo n
elif n > 1: echo " x ", n
else: echo ""</langsyntaxhighlight>
<pre>1 = 1
2 = 2
Line 3,013:
 
=={{header|Objeck}}==
<langsyntaxhighlight lang="objeck">
class CountingInFactors {
function : Main(args : String[]) ~ Nil {
Line 3,067:
}
}
</syntaxhighlight>
</lang>
Output:
<pre>
Line 3,093:
 
=={{header|OCaml}}==
<langsyntaxhighlight lang="ocaml">open Big_int
 
let prime_decomposition x =
Line 3,114:
aux (succ_big_int v)
in
aux unit_big_int</langsyntaxhighlight>
{{out|Execution}}
<pre>$ ocamlopt -o count.opt nums.cmxa count.ml
Line 3,140:
=={{header|Octave}}==
Octave's factor function returns an array:
<langsyntaxhighlight lang="octave">for (n = 1:20)
printf ("%i: ", n)
printf ("%i ", factor (n))
printf ("\n")
endfor</langsyntaxhighlight>
{{out}}
<pre>1: 1
Line 3,168:
 
=={{header|PARI/GP}}==
<langsyntaxhighlight lang="parigp">fnice(n)={
my(f,s="",s1);
if (n < 2, return(n));
Line 3,181:
s
};
n=0;while(n++, print(fnice(n)))</langsyntaxhighlight>
 
=={{header|Pascal}}==
{{works with|Free_Pascal}}
<langsyntaxhighlight lang="pascal">program CountInFactors(output);
 
{$IFDEF FPC}
Line 3,233:
writeln;
end;
end.</langsyntaxhighlight>
{{out}}
<pre>
Line 3,262:
=={{header|Perl}}==
Typically one would use a module for this. Note that these modules all return an empty list for '1'. This should be efficient to 50+ digits:{{libheader|ntheory}}
<langsyntaxhighlight lang="perl">use ntheory qw/factor/;
print "$_ = ", join(" x ", factor($_)), "\n" for 1000000000000000000 .. 1000000000000000010;</langsyntaxhighlight>
{{out}}
<pre>1000000000000000000 = 2 x 2 x 2 x 2 x 2 x 2 x 2 x 2 x 2 x 2 x 2 x 2 x 2 x 2 x 2 x 2 x 2 x 2 x 5 x 5 x 5 x 5 x 5 x 5 x 5 x 5 x 5 x 5 x 5 x 5 x 5 x 5 x 5 x 5 x 5 x 5
Line 3,278:
 
Giving similar output and also good for large inputs:
<langsyntaxhighlight lang="perl">use Math::Pari qw/factorint/;
sub factor {
my ($pn,$pc) = @{Math::Pari::factorint(shift)};
return map { ($pn->[$_]) x $pc->[$_] } 0 .. $#$pn;
}
print "$_ = ", join(" x ", factor($_)), "\n" for 1000000000000000000 .. 1000000000000000010;</langsyntaxhighlight>
 
or, somewhat slower and limited to native 32-bit or 64-bit integers only:
<langsyntaxhighlight lang="perl">use Math::Factor::XS qw/prime_factors/;
print "$_ = ", join(" x ", prime_factors($_)), "\n" for 1000000000000000000 .. 1000000000000000010;</langsyntaxhighlight>
 
 
If we want to implement it self-contained, we could use the prime decomposition routine from the [[Prime_decomposition]] task. This is reasonably fast and small, though much slower than the modules and certainly could have more optimization.
<langsyntaxhighlight lang="perl">sub factors {
my($n, $p, @out) = (shift, 3);
return if $n < 1;
Line 3,306:
}
 
print "$_ = ", join(" x ", factors($_)), "\n" for 100000000000 .. 100000000100;</langsyntaxhighlight>
 
We could use the second extensible sieve from [[Sieve_of_Eratosthenes#Extensible_sieves]] to only divide by primes.
<langsyntaxhighlight lang="perl">tie my @primes, 'Tie::SieveOfEratosthenes';
 
sub factors {
Line 3,324:
}
 
print "$_ = ", join(" x ", factors($_)), "\n" for 100000000000 .. 100000000010;</langsyntaxhighlight>
{{out}}
<pre>100000000000 = 2 x 2 x 2 x 2 x 2 x 2 x 2 x 2 x 2 x 2 x 2 x 5 x 5 x 5 x 5 x 5 x 5 x 5 x 5 x 5 x 5 x 5
Line 3,339:
 
This next example isn't quite as fast and uses much more memory, but it is self-contained and shows a different approach. As written it must start at 1, but a range can be handled by using a <code>map</code> to prefill the <tt>p_and_sq</tt> array.
<langsyntaxhighlight lang="perl">#!perl -C
use utf8;
use strict;
Line 3,370:
}
die "Ran out of primes?!";
}</langsyntaxhighlight>
 
=={{header|Phix}}==
<!--<langsyntaxhighlight Phixlang="phix">(phixonline)-->
<span style="color: #008080;">with</span> <span style="color: #008080;">javascript_semantics</span>
<span style="color: #008080;">procedure</span> <span style="color: #000000;">factorise</span><span style="color: #0000FF;">(</span><span style="color: #004080;">integer</span> <span style="color: #000000;">n</span><span style="color: #0000FF;">)</span>
Line 3,382:
<span style="color: #7060A8;">papply</span><span style="color: #0000FF;">(</span><span style="color: #7060A8;">tagset</span><span style="color: #0000FF;">(</span><span style="color: #000000;">10</span><span style="color: #0000FF;">)&{</span><span style="color: #000000;">2144</span><span style="color: #0000FF;">,</span><span style="color: #000000;">1000000000</span><span style="color: #0000FF;">},</span><span style="color: #000000;">factorise</span><span style="color: #0000FF;">)</span>
<!--</langsyntaxhighlight>-->
{{out}}
<pre>
Line 3,401:
=={{header|PicoLisp}}==
This is the 'factor' function from [[Prime decomposition#PicoLisp]].
<langsyntaxhighlight PicoLisplang="picolisp">(de factor (N)
(make
(let (D 2 L (1 2 2 . (4 2 4 2 4 6 2 6 .)) M (sqrt N))
Line 3,411:
 
(for N 20
(prinl N ": " (glue " * " (factor N))) )</langsyntaxhighlight>
{{out}}
<pre>1: 1
Line 3,435:
 
=={{header|PL/I}}==
<syntaxhighlight lang="pl/i">
<lang PL/I>
cnt: procedure options (main);
declare (i, k, n) fixed binary;
Line 3,460:
end;
end cnt;
</syntaxhighlight>
</lang>
Results:
<pre> 1 = 1
Line 3,505:
 
=={{header|PowerShell}}==
<syntaxhighlight lang="powershell">
<lang PowerShell>
function eratosthenes ($n) {
if($n -ge 1){
Line 3,538:
"$(prime-decomposition 100)"
"$(prime-decomposition 12)"
</syntaxhighlight>
</lang>
<b>Output:</b>
<pre>
Line 3,547:
 
=={{header|PureBasic}}==
<langsyntaxhighlight PureBasiclang="purebasic">Procedure Factorize(Number, List Factors())
Protected I = 3, Max
ClearList(Factors())
Line 3,584:
PrintN(text$)
Next a
EndIf</langsyntaxhighlight>
{{out}}
<pre> 1= 1
Line 3,609:
=={{header|Python}}==
This uses the [http://docs.python.org/dev/library/functools.html#functools.lru_cache functools.lru_cache] standard library module to cache intermediate results.
<langsyntaxhighlight lang="python">from functools import lru_cache
 
primes = [2, 3, 5, 7, 11, 13, 17] # Will be extended
Line 3,643:
print('\nNumber of primes gathered up to', n, 'is', len(primes))
print(pfactor.cache_info())</langsyntaxhighlight>
{{out}}
<pre> 1 1
Line 3,686:
Reusing the code from [http://rosettacode.org/wiki/Prime_decomposition#Quackery Prime Decomposition].
 
<langsyntaxhighlight Quackerylang="quackery"> [ [] swap
dup times
[ [ dup i^ 2 + /mod
Line 3,704:
cr again ] ] is countinfactors ( --> )
 
countinfactors</langsyntaxhighlight>
 
{{out}}
Line 3,734:
 
=={{header|R}}==
<syntaxhighlight lang="r">
<lang R>
#initially I created a function which returns prime factors then I have created another function counts in the factors and #prints the values.
 
Line 3,761:
}
count_in_factors(72)
</syntaxhighlight>
</lang>
 
{{out}}
Line 3,771:
See also [[#Scheme]]. This uses Racket&rsquo;s <code>math/number-theory</code> package
 
<langsyntaxhighlight lang="racket">#lang typed/racket
 
(require math/number-theory)
Line 3,792:
(factor-count 1 22)
(factor-count 2140 2150)
; tb</langsyntaxhighlight>
 
{{out}}
Line 3,833:
(formerly Perl 6)
{{works with|rakudo|2015-10-01}}
<syntaxhighlight lang="raku" perl6line>constant @primes = 2, |(3, 5, 7 ... *).grep: *.is-prime;
 
multi factors(1) { 1 }
Line 3,853:
}
 
say "$_: ", factors($_).join(" × ") for 1..*;</langsyntaxhighlight>
The first twenty numbers:
<pre>1: 1
Line 3,881:
Here is a solution inspired from [[Almost_prime#C]]. It doesn't use &is-prime.
 
<syntaxhighlight lang="raku" perl6line>sub factor($n is copy) {
$n == 1 ?? 1 !!
gather {
Line 3,893:
}
 
say "$_ == ", join " \x00d7 ", factor $_ for 1 .. 20;</langsyntaxhighlight>
 
Same output as above.
Line 3,900:
Alternately, use a module:
 
<syntaxhighlight lang="raku" perl6line>use Prime::Factor;
 
say "$_ = {(.&prime-factors || 1).join: ' x ' }" for flat 1 .. 10, 10**20 .. 10**20 + 10;</langsyntaxhighlight>
{{out}}
<pre>1 = 1
Line 3,934:
<br>prime factors are listed, but the number of primes found is always shown. &nbsp; The showing of the count of
<br>primes was included to help verify the factoring (of composites).
<langsyntaxhighlight lang="rexx">/*REXX program lists the prime factors of a specified integer (or a range of integers).*/
@.=left('', 8); @.0="{unity} "; @.1='[prime] ' /*some tags and handy-dandy literals.*/
parse arg LO HI @ . /*get optional arguments from the C.L. */
Line 3,970:
end /*j*/
if z==1 then return substr($, 1+length(@) ) /*Is residual=1? Don't add 1*/
return substr($||@||z, 1+length(@) ) /*elide superfluous header. */</langsyntaxhighlight>
{{out|output|text=&nbsp; when using the default inputs:}}
<pre>
Line 4,049:
 
Note that the &nbsp; '''integer square root''' &nbsp; section of code doesn't use any floating point numbers, just integers.
<langsyntaxhighlight lang="rexx">/*REXX program lists the prime factors of a specified integer (or a range of integers).*/
@.=left('', 8); @.0="{unity} "; @.1='[prime] ' /*some tags and handy-dandy literals.*/
parse arg LO HI @ . /*get optional arguments from the C.L. */
Line 4,099:
 
if z==1 then return substr($, 1+length(@) ) /*Is residual=1? Don't add 1*/
return substr($||@||z, 1+length(@) ) /*elide superfluous header. */</langsyntaxhighlight>
{{out|output|text=&nbsp; when using the default inputs:}}
<pre>
Line 4,147:
 
=={{header|Ring}}==
<langsyntaxhighlight lang="ring">
for i = 1 to 20
see "" + i + " = " + factors(i) + nl
Line 4,163:
end
return left(f, len(f) - 3)
</syntaxhighlight>
</lang>
Output:
<pre>
Line 4,190:
=={{header|Ruby}}==
Starting with Ruby 1.9, 'prime' is part of the standard library and provides Integer#prime_division.
<langsyntaxhighlight lang="ruby">require 'optparse'
require 'prime'
 
Line 4,212:
end.join " x "
puts "#{i} is #{f}"
end</langsyntaxhighlight>
{{out|Example}}
<pre>$ ruby prime-count.rb -h
Line 4,240:
 
=={{header|Run BASIC}}==
<langsyntaxhighlight lang="runbasic">for i = 1000 to 1016
print i;" = "; factorial$(i)
next
Line 4,256:
end if
wend
end function</langsyntaxhighlight>
{{out}}
<pre>1000 = 2 x 2 x 2 x 5 x 5 x 5
Line 4,278:
=={{header|Rust}}==
You can run and experiment with this code at https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=b66c14d944ff0472d2460796513929e2
<langsyntaxhighlight lang="rust">use std::env;
 
fn main() {
Line 4,318:
}
vec![n]
}</langsyntaxhighlight>
{{out}}
<pre>1
Line 4,343:
 
=={{header|Sage}}==
<langsyntaxhighlight lang="python">def count_in_factors(n):
if is_prime(n) or n == 1:
print(n,end="")
Line 4,358:
print(i,"=",end=" ")
count_in_factors(i)
print("")</langsyntaxhighlight>
 
{{out}}
Line 4,422:
 
=={{header|Scala}}==
<langsyntaxhighlight lang="scala">
object CountInFactors extends App {
 
Line 4,450:
 
}
</syntaxhighlight>
</lang>
{{out}}
<pre> 1 : 1
Line 4,468:
 
=={{header|Scheme}}==
<langsyntaxhighlight lang="lisp">(define (factors n)
(let facs ((l '()) (d 2) (x n))
(cond ((= x 1) (if (null? l) '(1) l))
Line 4,487:
(display i)
(display " = ")
(show (reverse (factors i))))</langsyntaxhighlight>
{{out}}
<pre>1 = 1
Line 4,504:
 
=={{header|Seed7}}==
<langsyntaxhighlight lang="seed7">$ include "seed7_05.s7i";
 
const proc: writePrimeFactors (in var integer: number) is func
Line 4,542:
writeln;
end for;
end func;</langsyntaxhighlight>
{{out}}
<pre>
Line 4,564:
 
=={{header|Sidef}}==
<langsyntaxhighlight lang="ruby">class Counter {
method factors(n, p=2) {
var a = gather {
Line 4,592:
for i in (1..100) {
say "#{i} = #{Counter().factors(i).join(' × ')}"
}</langsyntaxhighlight>
 
=={{header|Swift}}==
 
<langsyntaxhighlight lang="swift">extension BinaryInteger {
@inlinable
public func primeDecomposition() -> [Self] {
Line 4,624:
print("\(i) = \(i.primeDecomposition().map(String.init).joined(separator: " x "))")
}
}</langsyntaxhighlight>
 
{{out}}
Line 4,651:
=={{header|Tcl}}==
This factorization code is based on the same engine that is used in the [[Parallel calculations#Tcl|parallel computation task]].
<langsyntaxhighlight lang="tcl">package require Tcl 8.5
 
namespace eval prime {
Line 4,712:
return [join $v "*"]
}
}</langsyntaxhighlight>
Demonstration code:
<langsyntaxhighlight lang="tcl">set max 20
for {set i 1} {$i <= $max} {incr i} {
puts [format "%*d = %s" [string length $max] $i [prime::factors.rendered $i]]
}</langsyntaxhighlight>
 
=={{header|VBScript}}==
Made minor modifications on the code I posted under Prime Decomposition.
<langsyntaxhighlight lang="vb">Function CountFactors(n)
If n = 1 Then
CountFactors = 1
Line 4,779:
WScript.StdOut.WriteLine
WScript.StdOut.Write "2144 = " & CountFactors(2144)
WScript.StdOut.WriteLine</langsyntaxhighlight>
 
{{Out}}
Line 4,788:
 
=={{header|Visual Basic .NET}}==
<langsyntaxhighlight lang="vbnet">Module CountingInFactors
 
Sub Main()
Line 4,829:
End Sub
 
End Module</langsyntaxhighlight>
{{out}}
<pre>
Line 4,856:
=={{header|Vlang}}==
{{trans|go}}
<langsyntaxhighlight lang="vlang">fn main() {
println("1: 1")
for i := 2; ; i++ {
Line 4,870:
println('')
}
}</langsyntaxhighlight>
{{out}}
<pre>
Line 4,887:
 
=={{header|XPL0}}==
<langsyntaxhighlight XPL0lang="xpl0">include c:\cxpl\codes;
int N0, N, F;
[N0:= 1;
Line 4,903:
N0:= N0+1;
until KeyHit;
]</langsyntaxhighlight>
 
Example output:
Line 4,942:
=={{header|Wren}}==
{{libheader|Wren-math}}
<langsyntaxhighlight lang="ecmascript">import "/math" for Int
 
for (r in [1..9, 2144..2154, 9987..9999]) {
Line 4,950:
}
System.print()
}</langsyntaxhighlight>
 
{{out}}
Line 4,992:
 
=={{header|zkl}}==
<langsyntaxhighlight lang="zkl">foreach n in ([1..*]){ println(n,": ",primeFactors(n).concat("\U2715;")) }</langsyntaxhighlight>
Using the fixed size integer (64 bit) solution from [[Prime decomposition#zkl]]
<langsyntaxhighlight lang="zkl">fcn primeFactors(n){ // Return a list of factors of n
acc:=fcn(n,k,acc,maxD){ // k is 2,3,5,7,9,... not optimum
if(n==1 or k>maxD) acc.close();
Line 5,006:
if(n!=m) acc.append(n/m); // opps, missed last factor
else acc;
}</langsyntaxhighlight>
{{out}}
<pre>
Line 5,025:
=={{header|ZX Spectrum Basic}}==
{{trans|BBC_BASIC}}
<langsyntaxhighlight lang="zxbasic">10 FOR i=1 TO 20
20 PRINT i;" = ";
30 IF i=1 THEN PRINT 1: GO TO 90
Line 5,035:
90 NEXT i
100 STOP
110 DEF FN m(a,b)=a-INT (a/b)*b</langsyntaxhighlight>
10,327

edits