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!)
A253788 Row products of irregular tables A252753 & A252755. 4
1, 2, 12, 2160, 1905120000, 1034766105221882880000000, 139870330430486189977277369128961542673635737600000000000000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(0) = 1; for n>1: a(n) = Product_{k = A000079(n-1) .. A000225(n)} A252753(k) = Product_{k = 2^(n-1) .. (2^n)-1} A252753(k).
PROG
(Scheme)
(define (A253788 n) (if (zero? n) 1 (mul A252753 (A000079 (- n 1)) (A000225 n))))
(define (mul intfun lowlim uplim) (let multloop ((i lowlim) (res 1)) (cond ((> i uplim) res) (else (multloop (+ 1 i) (* res (intfun i)))))))
CROSSREFS
Cf. A253787 (the corresponding sums).
Sequence in context: A090904 A125295 A222065 * A252738 A360067 A357766
KEYWORD
nonn
AUTHOR
Antti Karttunen, Jan 13 2015
STATUS
approved

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 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)