diff options
author | dos-reis <gdr@axiomatics.org> | 2007-08-14 05:14:52 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2007-08-14 05:14:52 +0000 |
commit | ab8cc85adde879fb963c94d15675783f2cf4b183 (patch) | |
tree | c202482327f474583b750b2c45dedfc4e4312b1d /src/input/isprime.input.pamphlet | |
download | open-axiom-ab8cc85adde879fb963c94d15675783f2cf4b183.tar.gz |
Initial population.
Diffstat (limited to 'src/input/isprime.input.pamphlet')
-rw-r--r-- | src/input/isprime.input.pamphlet | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/src/input/isprime.input.pamphlet b/src/input/isprime.input.pamphlet new file mode 100644 index 00000000..5d852177 --- /dev/null +++ b/src/input/isprime.input.pamphlet @@ -0,0 +1,41 @@ +\documentclass{article} +\usepackage{axiom} +\begin{document} +\title{\$SPAD/src/input isprime.input} +\author{The Axiom Team} +\maketitle +\begin{abstract} +\end{abstract} +\eject +\tableofcontents +\eject +\section{License} +<<license>>= +--Copyright The Numerical Algorithms Group Limited 1994. +@ +<<*>>= +<<license>> +--The first two (2152302898747 and 3474749660383) are the only strong +--pseudoprimes bases 2,3,5,7,11 less than 10^13: the remaining three +--are the only Carmichael numbers less than 10^16 with this property. +n := 6763*10627*29947 +prime?(n) +factor(n) +n := 1303*16927*157543 +prime?(n) +factor(n) +n := 3739*18691*153259 +prime?(n) +factor(n) +n := 46411*232051*417691 +prime?(n) +factor(n) +n := 21319*106591*3005839 +prime?(n) +factor(n) +@ +\eject +\begin{thebibliography}{99} +\bibitem{1} nothing +\end{thebibliography} +\end{document} |