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!)
A193906 Triangular array: the self-fusion of (p(n,x)), where p(n,x)=sum{F(k+2)*x^(n-k) : 0<=k<=n}, where F=A000045 (Fibonacci numbers). 2
1, 1, 2, 2, 5, 8, 3, 8, 14, 23, 5, 13, 23, 39, 63, 8, 21, 37, 63, 103, 167, 13, 34, 60, 102, 167, 272, 440, 21, 55, 97, 165, 270, 440, 713, 1154, 34, 89, 157, 267, 437, 712, 1154, 1869, 3024, 55, 144, 254, 432, 707, 1152, 1867, 3024, 4894, 7919, 89, 233 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
See A193722 for the definition of fusion of two sequences of polynomials or triangular arrays. The first five rows of P, from the coefficients of p(n,k):
1
1...2
1...2...3
1...2...3...5
1...2...3...5...8
LINKS
EXAMPLE
First six rows of A193906:
1
1...2
2...5....8
3...8....14...23
5...13...23...39...63
8...21...37...63...103...167
MATHEMATICA
z = 12;
p[n_, x_] := Sum[Fibonacci[k + 2]*x^(n - k), {k, 0, n}];
q[n_, x_] := p[n, x]
t[n_, k_] := Coefficient[p[n, x], x^k]; t[n_, 0] := p[n, x] /. x -> 0;
w[n_, x_] := Sum[t[n, k]*q[n + 1 - k, x], {k, 0, n}]; w[-1, x_] := 1
g[n_] := CoefficientList[w[n, x], {x}]
TableForm[Table[Reverse[g[n]], {n, -1, z}]]
Flatten[Table[Reverse[g[n]], {n, -1, z}]] (* A193906 *)
TableForm[Table[g[n], {n, -1, z}]]
Flatten[Table[g[n], {n, -1, z}]] (* A193907 *)
CROSSREFS
Sequence in context: A011021 A077232 A193891 * A224791 A210637 A201972
KEYWORD
nonn,tabl
AUTHOR
Clark Kimberling, Aug 08 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 25 11:03 EDT 2024. Contains 371967 sequences. (Running on oeis4.)