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.

A049513 Array T by antidiagonals: T(k,n) = k*n*2^(n-1) + 1, n >= 0, k >= 0.

Original entry on oeis.org

1, 1, 1, 1, 2, 1, 1, 3, 5, 1, 1, 4, 9, 13, 1, 1, 5, 13, 25, 33, 1, 1, 6, 17, 37, 65, 81, 1, 1, 7, 21, 49, 97, 161, 193, 1, 1, 8, 25, 61, 129, 241, 385, 449, 1, 1, 9, 29, 73, 161, 321, 577, 897, 1025, 1, 1, 10, 33, 85, 193, 401, 769, 1345, 2049, 2305, 1, 1, 11, 37, 97, 225, 481
Offset: 0

Views

Author

Michael Somos, Sep 25 1999

Keywords

Examples

			Antidiagonals: 1; 1,1; 1,2,1; 1,3,5,1; 1,4,9,13,1; ...
		

Crossrefs

Essentially the same as A049069.

Programs

  • PARI
    {T(k, n) = k * n * 2^(n-1) + 1}

Formula

A005183(n) = T(1, n), A002064(n) = T(2, n), A048474(n) = T(3, n), A000337(n) = T(4, n), A016813(n) = T(n, 2), A017533(n) = T(n, 3).