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!)
A171145 The sequence of coefficients of a polynomial recursion: p(x,n)=If[Mod[n, 2] == 0, (x + 1)*p(x, n - 1), (x^2 + n*x + 1)^Floor[n/2]]. 0
1, 1, 1, 1, 3, 1, 1, 4, 4, 1, 1, 10, 27, 10, 1, 1, 11, 37, 37, 11, 1, 1, 21, 150, 385, 150, 21, 1, 1, 22, 171, 535, 535, 171, 22, 1, 1, 36, 490, 3024, 7539, 3024, 490, 36, 1, 1, 37, 526, 3514, 10563, 10563, 3514, 526, 37, 1, 1, 55, 1215, 13530, 76845, 188001, 76845 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,5
COMMENTS
Row sums are:
{1, 2, 5, 10, 49, 98, 729, 1458, 14641, 29282, 371293, 742586,...}.
The modulo 2 of this appears to be a staggered Sierpinski-type fractal.
LINKS
FORMULA
p(x,n)=If[Mod[n, 2] == 0, (x + 1)*p(x, n - 1), (x^2 + n*x + 1)^Floor[n/2]]
EXAMPLE
{1},
{1, 1},
{1, 3, 1},
{1, 4, 4, 1},
{1, 10, 27, 10, 1},
{1, 11, 37, 37, 11, 1},
{1, 21, 150, 385, 150, 21, 1},
{1, 22, 171, 535, 535, 171, 22, 1},
{1, 36, 490, 3024, 7539, 3024, 490, 36, 1},
{1, 37, 526, 3514, 10563, 10563, 3514, 526, 37, 1},
{1, 55, 1215, 13530, 76845, 188001, 76845, 13530, 1215, 55, 1},
{1, 56, 1270, 14745, 90375, 264846, 264846, 90375, 14745, 1270, 56, 1}
MATHEMATICA
Clear[p, n, x, a]
p[x, 1] := 1;
p[x_, n_] := p[x, n] = If[Mod[n, 2] == 0, (x + 1)*p[x, n - 1], (x^2 + n*x + 1)^Floor[n/2]];
a = Table[CoefficientList[p[x, n], x], {n, 1, 12}];
Flatten[a]
CROSSREFS
Sequence in context: A173076 A134510 A335322 * A271644 A262191 A334844
KEYWORD
nonn,tabl
AUTHOR
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 07:30 EDT 2024. Contains 371782 sequences. (Running on oeis4.)