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!)
A193979 Triangular array: the self-fission of (p(n,x)), where p(n,x)=x*p(n-1,x)+n, with p(0,x)=1. 2
1, 2, 3, 3, 5, 9, 4, 7, 13, 21, 5, 9, 17, 28, 41, 6, 11, 21, 35, 52, 71, 7, 13, 25, 42, 63, 87, 113, 8, 15, 29, 49, 74, 103, 135, 169, 9, 17, 33, 56, 85, 119, 157, 198, 241, 10, 19, 37, 63, 96, 135, 179, 227, 278, 331, 11, 21, 41, 70, 107, 151, 201, 256, 315, 377 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
See A193842 for the definition of fission of two sequences of polynomials or triangular arrays.
LINKS
EXAMPLE
First six rows:
1
2...3
3...5...9
4...7...13....21
5...9...17....28...41
6...11...21...35...52...71
MATHEMATICA
z = 11;
p[0, x_] := 1; p[n_, x_] := x*p[n - 1, x] + n;
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}]] (* A193979 *)
TableForm[Table[h[n], {n, 0, z}]]
Flatten[Table[h[n], {n, -1, z}]] (* A193980 *)
CROSSREFS
Sequence in context: A107854 A118808 A265019 * A059503 A317644 A194000
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 09:40 EDT 2024. Contains 370981 sequences. (Running on oeis4.)