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!)
A188587 1-Euler triangle. 3
1, 1, 1, 1, 1, 1, 1, 5, 5, 1, 1, 14, 30, 14, 1, 1, 33, 146, 146, 33, 1, 1, 72, 603, 1168, 603, 72, 1, 1, 151, 2241, 7687, 7687, 2241, 151, 1, 1, 310, 7780, 44194, 76870, 44194, 7780, 310, 1, 1, 629, 25820, 231236, 649514, 649514, 231236, 25820, 629, 1, 1, 1268, 83121, 1131504, 4866222, 7794168, 4866222, 1131504, 83121, 1268, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,8
COMMENTS
Formed with the same recurrence as the Euler triangle A008292 (adjusted for offset), but with the middle element of row n=2 set to 1.
Row sums are A188588. Second column is A188589.
LINKS
FORMULA
T(n,k) = 0 if k < 0 or k > n.
T(n,k) = 1 if k=0 or k=n or n=2.
T(n,k)= (n-k+1)*T(n-1,k-1) + (k+1)*T(n-1,k), n > 2 and 1 <= k < n.
EXAMPLE
Triangle begins
1;
1, 1;
1, 1, 1;
1, 5, 5, 1;
1, 14, 30, 14, 1;
1, 33, 146, 146, 33, 1;
1, 72, 603, 1168, 603, 72, 1;
1, 151, 2241, 7687, 7687, 2241, 151, 1;
1, 310, 7780, 44194, 76870, 44194, 7780, 310, 1;
1, 629, 25820, 231236, 649514, 649514, 231236, 25820, 629, 1;
MAPLE
A188587 := proc(n, k) if k < 0 or k > n then 0; elif k=0 or k= n or n=2 then 1; else (n-k+1)*procname(n-1, k-1)+(k+1)*procname(n-1, k) ; end if; end proc:
seq(seq(A188587(n, k), k=0..n), n=0..10) ; # R. J. Mathar, Apr 13 2011
CROSSREFS
Sequence in context: A046571 A172349 A144403 * A174119 A156696 A232651
KEYWORD
nonn,easy,tabl
AUTHOR
Paul Barry, Apr 04 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 19 15:11 EDT 2024. Contains 371794 sequences. (Running on oeis4.)