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!)
A167172 Triangle T(n,k) read by rows: T(n,k) = binomial(n, k) + A140356(n, k) - 1. 1
1, 1, 1, 1, 2, 1, 1, 3, 3, 1, 1, 4, 7, 4, 1, 1, 5, 11, 11, 5, 1, 1, 6, 16, 25, 16, 6, 1, 1, 7, 22, 40, 40, 22, 7, 1, 1, 8, 29, 61, 93, 61, 29, 8, 1, 1, 9, 37, 89, 149, 149, 89, 37, 9, 1, 1, 10, 46, 125, 233, 371, 233, 125, 46, 10, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
Row sums are: {1, 2, 4, 8, 17, 34, 71, 140, 291, 570, 1201,...}.
LINKS
FORMULA
T(n,k) = binomial(n, k) + A140356(n, k) - 1 = binomial(n, k) + if(k less than equal floor(n/2), Gamma(k + 1), Gamma(n - k + 1)) - 1.
EXAMPLE
{1},
{1, 1},
{1, 2, 1},
{1, 3, 3, 1},
{1, 4, 7, 4, 1},
{1, 5, 11, 11, 5, 1},
{1, 6, 16, 25, 16, 6, 1},
{1, 7, 22, 40, 40, 22, 7, 1},
{1, 8, 29, 61, 93, 61, 29, 8, 1},
{1, 9, 37, 89, 149, 149, 89, 37, 9, 1},
{1, 10, 46, 125, 233, 371, 233, 125, 46, 10, 1}.
MATHEMATICA
t[n_, k_] = Binomial[n, k] + If[k <= Floor[n/2], Gamma[k + 1], Gamma[n - k + 1]] - 1; Flatten[Table[Table[t[n, k], {k, 0, n}], {n, 0, 10}]]
CROSSREFS
Cf. A140356.
Sequence in context: A022818 A050447 A248601 * A173075 A166293 A094525
KEYWORD
nonn,tabl
AUTHOR
Roger L. Bagula, Oct 29 2009
EXTENSIONS
Edited by the OEIS editors, Jun 05 2016
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 18 07:55 EDT 2024. Contains 371769 sequences. (Running on oeis4.)