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!)
A177947 A symmetrical triangle sequence based on the beta function inverse and the spotlight tile A051601 as antidiagonal: t(n,m) = 1/Integrate[(-1 + t)^n/t^(m + n + 2), {t, 1, Infinity}] - (-2 Binomial[m + n, m] + Binomial[2 + m + n, 1 + m]). 0
1, 1, 1, 1, 4, 1, 1, 8, 8, 1, 1, 13, 22, 13, 1, 1, 19, 45, 45, 19, 1, 1, 26, 79, 110, 79, 26, 1, 1, 34, 126, 224, 224, 126, 34, 1, 1, 43, 188, 406, 518, 406, 188, 43, 1, 1, 53, 267, 678, 1050, 1050, 678, 267, 53, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
Beta[n+1,m+1] = Integrate[(-1 + t)^n/t^(m + n + 2), {t, 1, Infinity}].
Row sums are {1, 2, 6, 18, 50, 130, 322, 770, 1794, 4098, ...}.
The triangle modulo 2 is Sierpinski:
ListDensityPlot[Table[Table[Mod[ t[n, m], 2], {m, 0, 64}], {n, 0, 64}], Frame -> False, Mesh -> False].
LINKS
FORMULA
t(n,m) = 1/Integrate[(-1 + t)^n/t^(m + n + 2), {t, 1, Infinity}] - (-2 Binomial[m + n, m] + Binomial[2 + m + n, 1 + m]);
out_n,m = antidiagonal(t(n,m)) = A003506(n,m) - A051601(n,m).
EXAMPLE
{1},
{1, 1},
{1, 4, 1},
{1, 8, 8, 1},
{1, 13, 22, 13, 1},
{1, 19, 45, 45, 19, 1},
{1, 26, 79, 110, 79, 26, 1},
{1, 34, 126, 224, 224, 126, 34, 1},
{1, 43, 188, 406, 518, 406, 188, 43, 1},
{1, 53, 267, 678, 1050, 1050, 678, 267, 53, 1}
MATHEMATICA
Clear[t, n]
t[n_, m_] = 1/Integrate[(-1 + t)^n/t^(m + n + 2), {t, 1, Infinity}] - (-2 Binomial[m + n, m] + Binomial[2 + m + n, 1 + m]);
a = Table[Table[t[n, m], {n, 0, 10}], {m, 0, 10}];
Table[Table[a[[m, n - m + 1]], {m, 1, n}], {n, 1, 10}];
Flatten[%]
CROSSREFS
Sequence in context: A141541 A334552 A347676 * A132789 A319251 A100754
KEYWORD
nonn,tabl,uned
AUTHOR
Roger L. Bagula, May 15 2010
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 23 05:09 EDT 2024. Contains 371906 sequences. (Running on oeis4.)