惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

L
LangChain Blog
Recent Announcements
Recent Announcements
GbyAI
GbyAI
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Microsoft Azure Blog
Microsoft Azure Blog
N
Netflix TechBlog - Medium
人人都是产品经理
人人都是产品经理
MongoDB | Blog
MongoDB | Blog
D
DataBreaches.Net
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
WordPress大学
WordPress大学
U
Unit 42
腾讯CDC
D
Docker
The GitHub Blog
The GitHub Blog
阮一峰的网络日志
阮一峰的网络日志
Vercel News
Vercel News
I
InfoQ
Jina AI
Jina AI
爱范儿
爱范儿
宝玉的分享
宝玉的分享
博客园 - Franky
G
Google Developers Blog
P
Proofpoint News Feed

Hacker News

GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis Bonsai 1-bit WebGPU - a Hugging Face Space by webml-community Moving a large-scale metrics pipeline from StatsD to OpenTelemetry / Prometheus GitHub - Nightmare-Eclipse/RedSun: The Red Sun vulnerability repository GitHub - SethPyle376/hiraeth: Local AWS emulator focused on fast integration testing, with SQS support, SQLite-backed state, and a debug-friendly web UI. GitHub - macOS26/Agent: Any AI, replaces Claude Code, Cursor, OpenClaw. Over 18 LLM providers (Claude, OpenAI, Gemini, Ollama, Zai, HF, Qwen) wired into a native Mac app that writes code, builds Xcode projects, bumps versions, manages git, automates Safari, use AppleScript, JS or Accessibility, extend Agent! w/ MCP Servers, run tasks from your iPhone via Messages. YouTube now lets you turn off Shorts I Made a Terminal Pager Burgers | マクドナルド公式 Commands — HackerNews CLI documentation ChatGPT for Excel PiCore - Raspberry Pi Port of Tiny Core Linux Live Nation illegally monopolized ticketing market, jury finds Google Broke Its Promise to Me. Now ICE Has My Data. Founding Engineer at Adaptional | Y Combinator CRISPR takes important step toward silencing Down syndrome’s extra chromosome GitHub - saffron-health/libretto: The AI toolkit for building reliable browser automations US v. Heppner (S.D.N.Y. 2026) no attorney-client privilege for AI chats [pdf] Retrofitting JIT Compilers into C Interpreters IPv6 – Google The Accursèd Alphabetical Clock Cybersecurity Looks Like Proof of Work Now Fragments: April 14 Cal.com Goes Closed Source: Why AI Security Is Forcing Our Decision | Cal.com - Scheduling Software for Online Bookings Laravel raised money and now injects ads directly into your agent When moving fast, talking is the first thing to break Too much Discussion of the XOR swap trick – Heather Cafe Introduction to Spherical Harmonics for Graphics Programmers The Grand Line
Fast Factorial Functions
2026-05-20 · via Hacker News
 N !

Fastfactorialfunctions

There are five algorithms which everyone who wants to compute the factorial n! = 1.2.3...n should know.

  • The algorithm SplitRecursive, because it is simple and the fastest algorithm which does not use prime factorization.
  • The algorithm PrimeSwing, because it is the (asymptotical) fastest algorithm known to compute n!. The algorithm is based on the notion of the 'Swing Numbers' and computes n! via the prime factorization of these numbers.
  • The ingenious algorithm of Moessner which uses only additions! Though of no practical importance (because it is slow), it has the fascination of an unexpected solution.
  • The Poor Man's algorithm which uses no Big-Integer library and can be easily implemented in any computer language and is even fast up to 10000!.
  • The ParallelPrimeSwing algorithm, which is the PrimeSwing algorithm with improved performance using methods of concurrent programming and thus taking advantage of multiple core processors.
  • If you do not attach great importance to high performance then get a BigInteger library and use:
    BigInt recfact(long start, long n) {
        long i;
        if (n <= 16) { 
            BigInt r = new BigInt(start);
            for (i = start + 1; i < start + n; i++) r *= i;
            return r;
        }
        i = n / 2;
        return recfact(start, i) * recfact(start + i, n - i);
    }
    BigInt factorial(long n) { return recfact(1, n); }
    
  • And here is an algorithm which nobody needs, for the Simple-Minded only: long factorial(long n) {return n <= 1 ? 1 : n*factorial(n-1);} Just don't use it!

An example of a PrimeSwing computation:

swing

As this example shows an efficient computation of the factorial function reduces to an efficient computation of the swinging factorial n≀. Some information about these numbers can be found here and here. The prime factorization of the swing numbers is crucial for the implementation of the PrimeSwing algorithm.

A concise description of this algorithm is given in this write-up (pdf) and in the SageMath link below (Algo 5).


    Link  Content
   Algorithms A very short description of 21 algorithms for computing the factorial function n!.
 X Julia factorial *NEW* The factorial function based on the swinging factorial which in turn is computed via prime factorization implemented in Julia.
   Mini Library The factorial function, the binomial function, the double factorial, the swing numbers and an efficient prime number sieve implemented in Scala and GO.
   Browse Code Various algorithms implemented in
Java, C# and C++.
   SageMath Implementations in SageMath.
   LISP Implementations in Lisp.
   Benchmarks Benchmark 2013: With MPIR 2.6 you can calculate 100.000.000! in less than a minute provided you use one of the fast algorithms described here.
   Conclusions Which algorithm should we choose?
   Download Download a test application and benchmark yourself.
 X Approximations A unique collection! Approximation formulas.
   Gamma quot Bounds for Gamma(x+1)/Gamma(x+1/2)
   Gamma shift Why is Gamma(n)=(n-1)! and not Gamma(n)=n! ?
 X Hadamard
Hadamard's Gamma function and a new factorial function
[MathJax version]
   History Not even Wikipedia knows this!
The early history of the factorial function.
   Notation On the notation n!
   Binary Split For coders only. Go to the page of the day.
   Sage / Python Implementation of the swing algorithm.
 ‼ Double Factorial  The fast double factorial function.
   Prime Factorial Primfakultaet ('The Primorial', in German.)
   Bibliography Bibliography on Inequalities for the Gamma function.
 X Bernoulli &
Euler
Exotic Applications:
Inclusions for the Bernoulli and Euler numbers.
   Binomial Fast Binomial Function (Binomial Coefficients).
   Variations A combinatorial generalization of the factorial.
 X Stieltjes' CF On Stieltjes' Continued Fraction for the
Gamma Function.
   al-Haytham /
Lagrange
The ignorance of some western mathematicians.
A deterministic factorial primality test.
   Factorial Digits Number of decimal digits of 10n!
   Calculator Calculate n! for n up to 9.999.999.999 .
   RPN-Factorial The retro-factorial page!
   Permutations Awesome! Permutation trees, the combinatorics of n!.
   Perm. trees Download a pdf-poster with 120 permutation trees!
   Gamma
LogGamma
Plots of the factorial (gamma) function.
   External links Some bookmarks.

Fast-Factorial-Functions: The Homepage of Factorial Algorithms. (C) Peter Luschny, 2000-2017. All information and all source code in this directory is free under the Creative Commons Attribution-ShareAlike 3.0 Unported License. This page is listed on the famous "Dictionary of Algorithms and Data Structures" at the National Institute of Standards and Technology's web site (NIST). Apr. 2003 / Apr. 2017 : 800,000 visitors! Thank you!

Rational
Trees
Variants of
Variations
Eulerian
Polynomials
vonStaudt
Primes
Irregular
Primes
Generalized
Binomial
Bernoulli
Manifesto
Bernoulli
Function
Partitions
Stirling
Zeta
Polynomials
Perfect
Rulers
Clausen
Numbers
Hadamard
Gamma
History
Factorial
Permutation
Trees
Swiss
Knife
Swinging
Factorial
Worpitzky
Triangle