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!)
A136334 Triangular sequence from both a cubic expansion polynomial and a three deep polynomial recursion: Expansion polynomial: f(x,t)=1/(1 - 2*x*t + t^3); Recursion polynomials: p(x, n) = 2*x*p(x, n - 1) - p(x, n - 3);. 0
1, 0, 2, 0, 0, 4, -1, 0, 0, 8, 0, -4, 0, 0, 16, 0, 0, -12, 0, 0, 32, 1, 0, 0, -32, 0, 0, 64, 0, 6, 0, 0, -80, 0, 0, 128, 0, 0, 24, 0, 0, -192, 0, 0, 256, -1, 0, 0, 80, 0, 0, -448, 0, 0, 512, 0, -8, 0, 0, 240, 0, 0, -1024, 0, 0, 1024 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Row sums are A000071 (Fibonacci numbers A000045(n)-1).
This sequence was a designed experiment in Umbral Calculus
using a Weierstrass like cubic polynomial for the expansion base.
I was testing the recursion form in the polynomial as:
f(x,t)=1/(1-p(x,1)*t +t^m): m the depth of the recursion.
as a recursion of the form:
p(x,n)=p(x,1)*p(x,n-1)-p(x,n-m).
LINKS
FORMULA
f(x,t)=1/(1 - 2*x*t + t^3); f(x,t)=Sum[q(x,n)*t^n,{n,1,Infinity}]; p(x,0)=1;p(x,1)=2*x;p(x,2)=4*x^2; p(x, n) = 2*x*p(x, n - 1) - p(x, n - 3);
MATHEMATICA
(*expansion polynomial*) Clear[p, a] p[t_] = 1/(1 - 2*x*t + t^3) g = Table[ ExpandAll[SeriesCoefficient[ Series[p[t], {t, 0, 30}], n]], {n, 0, 10}]; a = Table[ CoefficientList[SeriesCoefficient[ Series[p[t], {t, 0, 30}], n], x], {n, 0, 10}]; Flatten[a] (* recursion polynomial*) Clear[p] p[x, 0] = 1; p[x, 1] = 2x; p[x, 2] = 4x^2; p[x_, n_] := p[x, n] = 2*x*p[x, n - 1] - p[x, n - 3]; Table[ExpandAll[p[x, n]], {n, 0, Length[g] - 1}]; Flatten[Table[CoefficientList[p[x, n], x], {n, 0, Length[g] - 1}]]
CROSSREFS
Sequence in context: A354352 A273346 A369731 * A155039 A238858 A106235
KEYWORD
tabl,uned,sign
AUTHOR
Roger L. Bagula, Apr 12 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 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)