cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A096126 a(n) is the least integer of the form (n^2)!/(n!)^k.

Original entry on oeis.org

1, 3, 280, 2627625, 5194672859376, 5150805819130303332, 1461034854396267778567973305958400, 450538787986875167583433232345723106006796340625, 146413934927214422927834111686633731590253260933067148964500000000
Offset: 1

Views

Author

Amarnath Murthy, Jul 03 2004

Keywords

Comments

(n^2)!/(n!)^(n+1) is an integer for every n (see A057599). Hence k >= n+1. Conjecture: k=n+1 only when n is prime or a power of a prime.

Examples

			a(4) = 16!/(4!)^5 = 2627625 which is not further divisible by 24.
		

Crossrefs

Programs

  • PARI
    a(n)={if(n==1, 1, (n^2)!/(n!^valuation((n^2)!,n!)))} \\ Andrew Howroyd, Nov 09 2019

Extensions

Edited by Don Reble, Jul 04 2004
a(9) from Andrew Howroyd, Nov 09 2019