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.

A152203 Triangle T(n,k) = (2n+1-2k)*fibonacci(k), read by rows.

Original entry on oeis.org

1, 3, 1, 5, 3, 2, 7, 5, 6, 3, 9, 7, 10, 9, 5, 11, 9, 14, 15, 15, 8, 13, 11, 18, 21, 25, 24, 13, 15, 13, 22, 27, 35, 40, 39, 21, 17, 15, 26, 33, 45, 56, 65, 63, 34, 19, 17, 30, 39, 55, 72, 91, 105, 102, 55, 21, 19, 34, 45, 65, 88, 117, 147, 170, 165
Offset: 1

Views

Author

Gary W. Adamson, Nov 29 2008

Keywords

Examples

			First few rows of the triangle =
1;
3, 1;
5, 3, 2;
7, 5, 6, 3;
9, 7, 10, 9, 5;
11, 9, 14, 15, 15, 8;
13, 11, 18, 21, 25, 24, 13;
15, 13, 22, 27, 35, 40, 39, 21;
17, 15, 26, 33, 45, 56, 65, 63, 34;
...
Row 4 = (7, 5, 6, 3) = termwise products of (7, 5, 3, 1) and (1, 1, 2, 3).
		

Crossrefs

Cf. A099375, A127647, A001891 (row sums).

Programs

  • Mathematica
    Flatten[Table[(2n+1-2k)Fibonacci[k],{n,15},{k,n}]] (* Harvey P. Dale, Mar 15 2015 *)

Formula

Triangle read by rows, A099375 * A127647 = termwise products of odd numbers and the Fibonacci series.