cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-3 of 3 results.

A131436 Triangle read by rows, (n-1) zeros followed by 2^n - 1.

Original entry on oeis.org

1, 0, 3, 0, 0, 7, 0, 0, 0, 15, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 63, 0, 0, 0, 0, 0, 0, 127, 0, 0, 0, 0, 0, 0, 0, 255, 0, 0, 0, 0, 0, 0, 0, 0, 511, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1023, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2047, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4095, 0, 0
Offset: 1

Views

Author

Gary W. Adamson, Jul 11 2007

Keywords

Examples

			First few rows of the triangle are:
1;
0, 3;
0, 0, 7;
0, 0, 0, 15;
0, 0, 0, 0, 31;
...
		

Crossrefs

Programs

  • Mathematica
    Flatten[Table[{PadRight[{},n-1,0],2^n-1},{n,20}]] (* Harvey P. Dale, May 23 2012 *)

Formula

2*A059268(n)-A059268(n+1). - Paul Curtz, Jul 03 2008

Extensions

More terms from Harvey P. Dale, May 23 2012

A131437 (A000012 * A131436) + (A131436 * A000012) - A000012.

Original entry on oeis.org

1, 3, 5, 7, 9, 13, 15, 17, 21, 29, 31, 33, 37, 45, 61, 63, 65, 69, 77, 93, 125, 127, 129, 133, 141, 157, 189, 253, 255, 257, 261, 269, 285, 317, 381, 509, 511, 513, 517, 525, 541, 573, 637, 765, 1021, 1023, 1025, 1029, 1037, 1053, 1085, 1149, 1277, 1533, 2045
Offset: 1

Views

Author

Gary W. Adamson, Jul 11 2007

Keywords

Comments

Left column = 2^n - 1; right border = A036563, 2^(n+1) - 3: (1, 5, 13, 29, 61, 125, ...). Row sums = A131438: (1, 8, 29, 82, 207, 492, 1129, ...).

Examples

			First few rows of the triangle are:
1;
3, 5;
7, 9, 13;
15, 17, 21, 29;
31, 33, 37, 45, 61;
63, 65, 69, 77, 93, 125;
...
		

Crossrefs

Programs

Formula

(A000012 * A131436) + (A131436 * A000012) - A000012; as infinite lower triangular matrices.

Extensions

Corrected by R. J. Mathar, Sep 24 2011

A131438 (2+n)*2^n-2-3*n.

Original entry on oeis.org

1, 8, 29, 82, 207, 492, 1129, 2534, 5603, 12256, 26589, 57306, 122839, 262100, 557009, 1179598, 2490315, 5242824, 11009989, 23068610, 48234431, 100663228, 209715129, 436207542, 905969587
Offset: 1

Views

Author

Gary W. Adamson, Jul 11 2007

Keywords

Comments

Row sums of triangle A131437.

Examples

			a(3) = 19 = sum of row 3 terms of triangle A131437: (7 + 9 + 13).
		

Crossrefs

Formula

Binomial transform of A131439.
G.f.: -x*(-1-2*x+6*x^2) / ( (2*x-1)^2*(x-1)^2 ). - R. J. Mathar, Sep 24 2011

Extensions

Definition replaced by formula. - R. J. Mathar, Sep 24 2011
Showing 1-3 of 3 results.