[go: up one dir, main page]

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!)
Revision History for A134319 (Underlined text is an addition; strikethrough text is a deletion.)

Showing entries 1-10 | older changes
A134319 Triangle read by rows. T(n, k) = binomial(n, k)*(2^k - 1 + 0^k).
(history; published version)
#25 by Michael De Vlieger at Fri Jun 23 10:31:44 EDT 2023
STATUS

proposed

approved

#24 by Peter Luschny at Fri Jun 23 10:05:16 EDT 2023
STATUS

editing

proposed

#23 by Peter Luschny at Fri Jun 23 10:01:13 EDT 2023
MAPLE

Trow := n -> seq((-1)^k * coeff(p(n, 0), x, n - k), k = 0..n):): # _Peter Luschny_, Jun 23 2023

seq(Trow(n), n = 0..10); # Peter Luschny, Jun 23 2023

CROSSREFS

Cf. A083313, A083323 (row sums), A255047 (main diagonal).

#22 by Peter Luschny at Fri Jun 23 09:53:23 EDT 2023
NAME

A007318 * aTriangle triangleread by rows: for . T(n > 0, k) = binomial(n zeros followed by , k)*(2^nk - 1. + 0^k).

FORMULA

Previous definition: A007318 * a triangle by rows: for n > 0, n zeros followed by 2^n - 1.

MAPLE

T := (n, k) -> binomial(n, k)*(2^k - 1 + 0^k):

for n from 0 to 7 do seq(T(n, k), k=0..n) od;

# Or as a recursion:

EXTENSIONS

New name using a formula of Yuchun Ji by Peter Luschny, Jun 23 2023

#21 by Peter Luschny at Fri Jun 23 09:37:49 EDT 2023
COMMENTS

Row sums = A083323: (1, 2, 6, 20, 66, 212, 666, ...).

MAPLE

# Alternative:

p := proc(n, m) option remember; if n = 0 then max(1, m) else

(m + x)*p(n - 1, m) - (m + 1)*p(n - 1, m + 1) fi end:

Trow := n -> seq((-1)^k * coeff(p(n, 0), x, n - k), k = 0..n):

seq(Trow(n), n = 0..10); # Peter Luschny, Jun 23 2023

CROSSREFS

Cf. A083313., A083323 (row sums).

STATUS

approved

editing

#20 by N. J. A. Sloane at Sat Feb 16 06:57:13 EST 2019
STATUS

proposed

approved

#19 by Jon E. Schoenfield at Tue Feb 12 22:25:18 EST 2019
STATUS

editing

proposed

Discussion
Wed Feb 13 03:30
Michel Marcus: Maybe I made a mistake, but for me the new formula does not work
03:47
Michel Marcus: No , my mistake M(n) has offset 0 with M(k) = if (k<1, 1, 2^k-1)
19:39
Yuchun Ji: @Michel Marcus, Alois P. Heinz said (1, 1, 3, 7, 15, ...) just is the Mersenne-like A255047, called M(k) here. For example T(3,k) = (1, 3, 9, 7) = (1*1, 3*1, 3*3, 1*7), where C(3,k) = (1, 3, 3, 1) and M(k) = (1, 1, 3, 7).
#18 by Jon E. Schoenfield at Tue Feb 12 22:25:15 EST 2019
NAME

A007318 * a triangle by rows: for n> > 0, n zeros followed by 2^n - 1.

COMMENTS

Row sums = A083323: (1, 2, 6, 20, 66, 212, 666,...)., ...).

FORMULA

Binomial transform of a diagonalized infinite lower triangular matrix with (1, 1, 3, 7, 15,...) , ...) in the main diagonal and the rest zeros.

T(n,k) = |[1/(2^x)^k] 1+( + (1-1/2^x)^n-( - (1-2/2^x)^n|. - Alois P. Heinz, Dec 10 2008

T(n,k) = Cbinomial(n,k)*M(k). ) where C is binomial, M is Mersenne-like A255047. - Yuchun Ji, Feb 13 2019.

EXAMPLE

First few rows of the triangle are:

1;

1, 1;

1, 2, 3;

1, 3, 9, 7;

1, 4, 18, 28, 15;

1, 5, 30, 70, 75, 31;

1, 6, 45, 140, 225, 186, 63;

1, 7, 63, 245, 525, 651, 441, 127;

...

...

STATUS

proposed

editing

#17 by Yuchun Ji at Tue Feb 12 21:36:08 EST 2019
STATUS

editing

proposed

#16 by Yuchun Ji at Tue Feb 12 21:34:43 EST 2019
FORMULA

T(n,k) = C(n,k)*M(k) for k > 0, T(n,0) = 1, ). where C is binomial, M is Mersenne-like A000225A255047. - Yuchun Ji, Feb 13 2019.

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 August 29 06:09 EDT 2024. Contains 375510 sequences. (Running on oeis4.)