The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A075502 Triangle read by rows: Stirling2 triangle with scaled diagonals (powers of 7). 10
1, 7, 1, 49, 21, 1, 343, 343, 42, 1, 2401, 5145, 1225, 70, 1, 16807, 74431, 30870, 3185, 105, 1, 117649, 1058841, 722701, 120050, 6860, 147, 1, 823543, 14941423, 16235562, 4084101, 360150, 13034, 196, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
This is a lower triangular infinite matrix of the Jabotinsky type. See the D. E. Knuth reference given in A039692 for exponential convolution arrays.
The row polynomials p(n,x) := Sum_{m=1..n} a(n,m)x^m, n >= 1, have e.g.f. J(x; z)= exp((exp(7*z) - 1)*x/7) - 1.
LINKS
FORMULA
a(n, m) = (7^(n-m)) * stirling2(n, m).
a(n, m) = 7*m*a(n-1, m) + a(n-1, m-1), n>=m>=1, else 0, with a(n, 0) := 0 and a(1, 1)=1.
a(n, m) = (Sum_{p=0..m-1} A075513(m, p)*((p+1)*7)^(n-m))/(m-1)! for n >= m >= 1, else 0.
G.f. for m-th column: (x^m)/Product_{k=1..m}(1-7*k*x), m >= 1.
E.g.f. for m-th column: (((exp(7*x)-1)/7)^m)/m!, m >= 1.
EXAMPLE
[1]; [7,1]; [49,21,1]; ...; p(3,x) = x * (49 + 21*x + x^2).
From Andrew Howroyd, Mar 25 2017: (Start)
Triangle starts
* 1
* 7 1
* 49 21 1
* 343 343 42 1
* 2401 5145 1225 70 1
* 16807 74431 30870 3185 105 1
* 117649 1058841 722701 120050 6860 147 1
* 823543 14941423 16235562 4084101 360150 13034 196 1
(End)
MATHEMATICA
Flatten[Table[7^(n - m) StirlingS2[n, m], {n, 11}, {m, n}]] (* Indranil Ghosh, Mar 25 2017 *)
PROG
(PARI) for(n=1, 11, for(m=1, n, print1(7^(n - m) * stirling(n, m, 2), ", "); ); print(); ) \\ Indranil Ghosh, Mar 25 2017
CROSSREFS
Columns 1-7 are A000420, A075921-A075925, A076002. Row sums are A075506.
Sequence in context: A038267 A027466 A218017 * A052104 A144450 A051339
KEYWORD
nonn,easy,tabl
AUTHOR
Wolfdieter Lang, Oct 02 2002
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 June 8 17:25 EDT 2024. Contains 373224 sequences. (Running on oeis4.)