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!)
A207646 Product_{k=1..n} floor(2*n/k - 1). 5
1, 1, 3, 10, 21, 72, 330, 468, 2520, 8160, 20520, 60480, 318780, 504000, 2426112, 10523520, 21092400, 53222400, 452390400, 506373120, 3226728960, 11604902400, 21299241600, 76640256000, 431500608000, 844958822400, 3197988864000, 10492449177600, 38109367296000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Forms the right border of even-indexed rows in irregular triangle A207645.
LINKS
FORMULA
a(n) = A207645(2*n, n).
EXAMPLE
Illustration of the initial terms:
a(1) = [2/1-1] = 1;
a(2) = [4/1-1]*[4/2-1] = 3;
a(3) = [6/1-1]*[6/2-1]*[6/3-1] = 10;
a(4) = [8/1-1]*[8/2-1]*[8/3-1]*[8/4-1] = 21;
a(5) = [10/1-1]*[10/2-1]*[10/3-1]*[10/4-1]*[10/5-1] = 72; ...
where [x] = floor(x).
MATHEMATICA
Table[Product[Floor[(2n)/k-1], {k, n}], {n, 0, 30}] (* Harvey P. Dale, Aug 27 2017 *)
PROG
(PARI) {a(n)=prod(k=1, n, floor(2*n/k-1))}
for(n=0, 50, print1(a(n), ", "))
(PARI) a(n)=n*=2; prod(k=1, n/3, n\k-1) \\ Charles R Greathouse IV, Feb 20 2012
CROSSREFS
Sequence in context: A081950 A204340 A331017 * A071563 A360632 A139116
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Feb 20 2012
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 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)