A344110 Triangle read by rows: T(n,k) = 2^(n*k), n >= 0, 0 <= k <= n.
1, 1, 2, 1, 4, 16, 1, 8, 64, 512, 1, 16, 256, 4096, 65536, 1, 32, 1024, 32768, 1048576, 33554432, 1, 64, 4096, 262144, 16777216, 1073741824, 68719476736, 1, 128, 16384, 2097152, 268435456, 34359738368, 4398046511104, 562949953421312
Offset: 0
Examples
T(3,3) = number of relations from a 3-element set into a 3-element set=2^(3*3)=512. Triangle begins: 1 1 2 1 4 16 1 8 64 512 1 16 256 4096 65536 1 32 1024 32768 1048576 33554432 ...
Links
- Michael De Vlieger, Table of n, a(n) for n = 0..1325 (rows n = 0..50, flattened)
- Mohammad K. Azarian, Remarks and Conjectures Regarding Combinatorics of Discrete Partial Functions, Int'l Math. Forum (2022) Vol. 17, No. 3, 129-141.
Crossrefs
Programs
-
Mathematica
Table[2^(n*k), {n, 0, 10}, {k, 0, n}]
Formula
T(n,k) = 2^(n*k).
Comments