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!)
A193975 Triangular array: the self-fission of (p(n,x)), where p(n,x)=x*p(n-1,x)+n+1, where p(0,x)=1. 2
2, 3, 8, 4, 11, 20, 5, 14, 26, 40, 6, 17, 32, 50, 70, 7, 20, 38, 60, 85, 112, 8, 23, 44, 70, 100, 133, 168, 9, 26, 50, 80, 115, 154, 196, 240, 10, 29, 56, 90, 130, 175, 224, 276, 330, 11, 32, 62, 100, 145, 196, 252, 312, 375, 440, 12, 35, 68, 110, 160, 217, 280 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
See A193842 for the definition of fission of two sequences of polynomials or triangular arrays.
LINKS
EXAMPLE
First six rows:
2
3...8
4...11...20
5...14...26...40
6...17...32...50...70
7...20...38...60...85...112
MATHEMATICA
z = 11;
p[0, x_] := 1; p[n_, x_] := x*p[n - 1, x] + n + 1;
q[n_, x_] := p[n, x];
p1[n_, k_] := Coefficient[p[n, x], x^k];
p1[n_, 0] := p[n, x] /. x -> 0;
d[n_, x_] := Sum[p1[n, k]*q[n - 1 - k, x], {k, 0, n - 1}]
h[n_] := CoefficientList[d[n, x], {x}]
TableForm[Table[Reverse[h[n]], {n, 0, z}]]
Flatten[Table[Reverse[h[n]], {n, -1, z}]] (* A193975 *)
TableForm[Table[h[n], {n, 0, z}]]
Flatten[Table[h[n], {n, -1, z}]] (* A193976 *)
CROSSREFS
Sequence in context: A158928 A198369 A193731 * A224665 A098514 A161198
KEYWORD
nonn,tabl
AUTHOR
Clark Kimberling, Aug 10 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 March 19 06:56 EDT 2024. Contains 370953 sequences. (Running on oeis4.)