1 (kill(all),load(orthopoly), 0);
13 is(pochhammer(1,10) = 10!);
23 32110*%i/81-415610/729$
25 pochhammer(9/7 + %i,-8);
26 -2161987431262848*%i/11917457996918446325 - 2103182442996551/47669831987673785300$
28 (f : pochhammer(x,-n), f : subst(n=-10, f));
31 pochhammer(13/2, 1/2);
34 pochhammer(13/2,-1/2);
37 expand(pochhammer(x,3));
40 (f : pochhammer(123/10, 78), g : pochhammer(12.3, 78), is(abs(f-g)/abs(f) < 3.0e-15));
43 (f : pochhammer(-123/10 + %i, 42), g : pochhammer(-12.3 + %i, 42), is(abs(f-g)/abs(f) < 3.0e-15));
49 (f : pochhammer(12, 78), g : pochhammer(12.0b0, 78), is(bfloat(abs(f-g)/abs(f)) < 3.0b-35));
53 (f : pochhammer(12 + %i, 42), g : pochhammer(12.0b0 + %i, 42), is(bfloat(abs(f-g)/abs(f)) < 3.0e-35));
56 (f : pochhammer(-12 + %i, -57), g : pochhammer(-12.0b0 + %i, -57), is(bfloat(abs(f-g)/abs(f)) < 3.0e-35));
59 (f : pochhammer(-7 - %i, -57), g : pochhammer(-7.0b0 - %i, -57), is(bfloat(abs(f-g)/abs(f)) < 3.0e-35));
62 (f : pochhammer(%i, -87), g : pochhammer(1.0b0 * %i, -87), is(bfloat(abs(f-g)/abs(f)) < 3.0e-35));
74 (f : pochhammer(x,n),0);
80 diff(pochhammer(x,n),x);
81 pochhammer(x,n)*(psi[0](x+n)-psi[0](x))$
83 diff(pochhammer(x,n),n);
84 pochhammer(x,n)*psi[0](x+n)$
86 ratdisrep(pochhammer(taylor(x,x,0,2),10));
87 362880*x+1026576*x^2+1172700*x^3$
89 is(minfactorial(makefact(sublis([n=-1], makegamma(pochhammer(x,n))))) = pochhammer(x,-1));
92 is(minfactorial(makefact(sublis([n=-2], makegamma(pochhammer(x,n))))) = pochhammer(x,-2));
95 is(minfactorial(makefact(sublis([n=-5], makegamma(pochhammer(x,n))))) = pochhammer(x,-5));
98 is(pochhammer(11/2, 1/2) = sublis([x=11/2, n = 1/2], makegamma(pochhammer(x,n))));
101 is(pochhammer(11/2, -1/2) = sublis([x=11/2, n = -1/2], makegamma(pochhammer(x,n))));
104 is(pochhammer(11/2, -7/2) = sublis([x=11/2, n = -7/2], makegamma(pochhammer(x,n))));
107 (remvalue(f,g), reset(fpprec),0);