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.

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