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!)
A192238 Constant term in the reduction of the polynomial x(x+1)(x+2)...(x+n-1) by x^2 -> x+1. 3
1, 0, 1, 6, 37, 256, 1999, 17490, 169895, 1816320, 21205745, 268547510, 3667187645, 53722014720, 840455448415, 13985762375970, 246675543859855, 4596826887347200, 90249727067243425, 1861971659969854950, 40274219840308939925 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
COMMENTS
See A192232.
LINKS
FORMULA
Conjecture: a(n) +2*(-n+1)*a(n-1) +(n^2-3*n+1)*a(n-2)=0. - R. J. Mathar, May 04 2014
MATHEMATICA
q[x_] := x + 1;
p[0, x_] := 1; p[1, x_] := x;
p[n_, x_] := (x + n) p[n - 1, x] /; n > 1
reductionRules = {x^y_?EvenQ -> q[x]^(y/2),
x^y_?OddQ -> x q[x]^((y - 1)/2)};
t = Table[
Last[Most[
FixedPointList[Expand[#1 /. reductionRules] &, p[n, x]]]], {n, 0,
20}]
Table[Coefficient[Part[t, n], x, 0], {n, 1, 20}] (* A192238 *)
Table[Coefficient[Part[t, n], x, 1], {n, 1, 20}] (* A192239 *)
(* by Peter J. C. Moses, Jun 25 2011 *)
CROSSREFS
Sequence in context: A351152 A355957 A073013 * A140712 A362094 A079751
KEYWORD
nonn
AUTHOR
Clark Kimberling, Jun 26 2011
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 23:15 EDT 2024. Contains 371798 sequences. (Running on oeis4.)