login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A267096 a(n) = Product_{i=0..n} prime(i+2)^binomial(n,i). 6

%I #18 Sep 20 2016 09:11:50

%S 3,15,525,1414875,41985913344375,433555011900329243987584396875,

%T 3514495551481947615680580256869117013417604971088496013610671875

%N a(n) = Product_{i=0..n} prime(i+2)^binomial(n,i).

%H <a href="/index/Pas#Pascal">Index entries for triangles and arrays related to Pascal's triangle</a>

%F a(n) = Product_{i=0..n} prime(i+2)^C(n,i).

%F a(n) = A003961(A007188(n)).

%e Terms are obtained by exponentiating the odd primes in range [3 .. prime(2+n)] with the binomial coefficients obtained from row n of Pascal's triangle (A007318) and then multiplying the factors together:

%e 3^1

%e 3^1 * 5^1

%e 3^1 * 5^2 * 7^1

%e 3^1 * 5^3 * 7^3 * 11^1

%e 3^1 * 5^4 * 7^6 * 11^4 * 13^1

%e etc.

%o (Scheme)

%o (define (A267096 n) (mul (lambda (k) (expt (A000040 (+ 2 k)) (A007318tr n k))) 0 n)) ;; Where A007318tr gives binomial coefficients, as in A007318.

%o (define (mul intfun lowlim uplim) (let multloop ((i lowlim) (res 1)) (cond ((> i uplim) res) (else (multloop (1+ i) (* res (intfun i)))))))

%Y Second column (or diagonal from right) in A066117.

%Y Cf. A000040, A003961, A007188, A007318, A252738, A276804.

%K nonn

%O 0,1

%A _Antti Karttunen_, Feb 06 2016

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 09:38 EDT 2024. Contains 371967 sequences. (Running on oeis4.)