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!)
A137349 A triangular sequence from coefficients of a mixed type of three deep polynomial recursion: Q(x, n) = 6*x*Q(x, n - 2)*Q(x, n - 3) - 2*Q(x, n - 3). 0
1, -2, 2, 0, -2, -12, 12, 4, -4, 0, 4, -24, -264, 576, -288, -8, 8, 0, -8, -144, 1872, 10368, -39744, 41472, -13824, 16, -16 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
R
REFERENCES
Henry McKean and Victor Moll, Elliptic Curves, Function Theory, Geometry, Arithmetic, Cambridge University Press, New York, 1997, page 91.
LINKS
FORMULA
Q(x, n) = 6*x*Q(x, n - 2)*Q(x, n - 3) - 2*Q(x, n - 3).
EXAMPLE
{1},
{-2, 2},
{0},
{-2, -12, 12},
{4, -4},
{0},
{4, -24, -264, 576, -288},
{-8, 8},
{0},
{-8, -144, 1872, 10368, -39744, 41472, -13824},
{16, -16}
MATHEMATICA
Q[x, -2] = 1 - x; Q[x, -1] = 0; Q[x, 0] = 1;
Q[x_, n_] := Q[x, n] = 6*x*Q[x, n - 2]*Q[x, n - 3] - 2*Q[x, n - 3]
Table[ExpandAll[Q[x, n]], {n, 0, 10}]
a = Table[CoefficientList[Q[x, n], x], {n, 0, 10}] (* here I had to add {0} for null {} to get a representation*)
Flatten[{{1}, {-2, 2}, {0}, {-2, -12, 12}, {4, -4}, {0}, {4, -24, -264, 576, -288}, {-8, 8}, {0}, {-8, -144, 1872, 10368, -39744, 41472, -13824}, {16, -16}}]
CROSSREFS
Sequence in context: A171244 A028305 A347086 * A087318 A087319 A101348
KEYWORD
uned,tabf,sign
AUTHOR
Roger L. Bagula, Apr 08 2008
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 23 07:42 EDT 2024. Contains 371905 sequences. (Running on oeis4.)