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”).

A207647
a(n) = Product_{k=1..n} floor((2*n+1)/k - 1).
5
1, 2, 4, 12, 48, 80, 360, 1344, 2688, 8640, 51840, 63360, 443520, 1198080, 2515968, 10886400, 48384000, 87736320, 465315840, 1134673920, 3309465600, 11887948800, 71530905600, 78343372800, 528817766400, 1839366144000, 3260694528000, 15837659136000, 82169502105600
OFFSET
0,2
COMMENTS
Forms the right border of odd-indexed rows in irregular triangle A207645.
LINKS
FORMULA
a(n) = A207645(2*n+1, n).
EXAMPLE
Illustration of the initial terms:
a(1) = [3/1-1] = 2;
a(2) = [5/1-1]*[5/2-1] = 4;
a(3) = [7/1-1]*[7/2-1]*[7/3-1] = 12;
a(4) = [9/1-1]*[9/2-1]*[9/3-1]*[9/4-1] = 48;
a(5) = [11/1-1]*[11/2-1]*[11/3-1]*[11/4-1]*[11/5-1] = 80; ...
where [x] = floor(x).
MATHEMATICA
Table[Product[Floor[(2n+1)/k-1], {k, n}], {n, 0, 30}] (* Harvey P. Dale, Jun 01 2019 *)
PROG
(PARI) {a(n)=prod(k=1, n, floor((2*n+1)/k-1))}
for(n=0, 50, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Feb 20 2012
STATUS
approved