Wiki

Clone wiki

symja_android_library / Symbols / FactorInteger

FactorInteger

FactorInteger(n)
gives a list of the prime factors of the integer n together with their exponents.

Examples

>>> FactorInteger(990)
{{2,1},{3,2},{5,1},{11,1}}
>>> FactorInteger(341550071728321)
{{10670053,1},{32010157,1}}

Related terms

IntegerExponent, PowerMod

Updated