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.

A061149 Smallest number whose number of divisors = n-th primorial (A002110).

This page as a plain text file.
%I A061149 #30 Aug 26 2025 04:56:40
%S A061149 1,2,12,720,907200,251475840000,14272938808128000000,
%T A061149 1683176415906545239680000000000,
%U A061149 216212806227686567939021962996416000000000000
%N A061149 Smallest number whose number of divisors = n-th primorial (A002110).
%C A061149 The n-th term is divisible by the product of first n primorial numbers (A006939(n)), the n-th Chernoff-number. Also the numbers are refactorable (A033950).
%C A061149 The formula computes a(n) correctly. - _T. D. Noe_, May 17 2010
%H A061149 Michael De Vlieger, <a href="/A061149/b061149.txt">Table of n, a(n) for n = 0..23</a>
%F A061149 The n-th term is constructed as a product of special powers of the first n primes, as follows: a(n) = Product_{j=1..n} prime(j)^(prime(n-j+1)-1).
%F A061149 a(n) = A005179(A002110(n)). - _Amiram Eldar_, Aug 26 2025
%e A061149 a(1) = 2, a(2) = (2^2)*(3^1) = 12, a(3) = (2^4)*(3^2)*(5^1) = 720, ..., a(7) = (2^16)*(3^12)*(5^10)*(7^6)*(11^4)*(13^2)*(17^1) = 1683176415906545239680000000000. a(7) is divisible by the product of the first 7 primorial numbers (= A006939(7)): a(7)/2677277333530800000 = 628689600000.
%t A061149 a[n_] := Times @@ (Prime[Range[n]]^(Prime[Range[n, 1, -1]]-1)); Array[a, 9, 0] (* _Jean-François Alcover_, Dec 11 2016, after _T. D. Noe_ *)
%Y A061149 Cf. A000005, A002110, A005179, A006093, A006939, A025487, A033950.
%K A061149 nice,nonn,changed
%O A061149 0,2
%A A061149 _Labos Elemer_, May 30 2001
%E A061149 a(0) prepended by _Amiram Eldar_, Aug 26 2025