[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A066120
Superduperprimorials: product of first n terms in Chernoff sequence.
12
1, 2, 24, 8640, 653184000, 114069441024000000, 598216546007097937920000000000, 1601591599167888308924824752807936000000000000000
OFFSET
0,2
COMMENTS
First number with n distinct positive triangular exponents in its prime factorization. Subsequence of A025487. - Matthew Vandermast, Nov 05 2009; edited May 23 2012
LINKS
FORMULA
a(n) = Product_{i=1..n} prime(i)^((n-i+1)*(n-i+2)/2) = a(n-1)*A006939(n) = A066119(n-3, 4).
EXAMPLE
a(4) = 2*(2*(2*3))*(2*(2*3)*(2*3*5)) = 2*(2*6)*(2*6*30) = 2*12*360 = 8640.
PROG
(PARI) { for (n=0, 17, a=1; for(i=1, n, a*=prime(i)^((n - i + 1)*(n - i + 2)/2)); write("b066120.txt", n, " ", a) ) } \\ Harry J. Smith, Feb 01 2010
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Henry Bottomley, Dec 05 2001
STATUS
approved