[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Revision History for A089072 (Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

Showing entries 1-10 | older changes
Triangle read by rows: T(n,k) = k^n, n >= 1, 1 <= k <= n.
(history; published version)
#60 by Michael De Vlieger at Sun Jun 23 11:51:55 EDT 2024
STATUS

reviewed

approved

#59 by Joerg Arndt at Sun Jun 23 11:28:01 EDT 2024
STATUS

proposed

reviewed

#58 by Manfred Boergens at Sun Jun 23 10:39:23 EDT 2024
STATUS

editing

proposed

#57 by Manfred Boergens at Sun Jun 23 10:38:33 EDT 2024
COMMENTS

From Manfred Boergens, Jun 23 2024: (Start)

In the following two comments the restriction k<=n can be lifted, allowing all k>=1.

T(n,k) is the number of n X k binary matrices with row sums = 1.

T(n,k) is the number of coverings of [n] by tuples (A_1,...,A_k) in P([n])^k with disjoint A_j, with P(.) denoting the power set.

For nonempty A_j see A019538.

For tuples with "disjoint" dropped see A092477.

For tuples with nonempty A_j and with "disjoint" dropped see A218695. (End)

CROSSREFS
STATUS

approved

editing

#56 by N. J. A. Sloane at Sun Nov 06 07:47:23 EST 2022
STATUS

proposed

approved

#55 by Michel Marcus at Wed Nov 02 04:16:37 EDT 2022
STATUS

editing

proposed

#54 by Michel Marcus at Wed Nov 02 04:16:32 EDT 2022
FORMULA

Set a(n) = (n + T*(1-T)/2)^T, where T = round(sqrt(2*n),0) then a(n) = (n + T*(1-T)/2)^T. - Gerald Hillier, Apr 12 2015

STATUS

proposed

editing

#53 by G. C. Greubel at Wed Nov 02 04:12:18 EDT 2022
STATUS

editing

proposed

#52 by G. C. Greubel at Tue Nov 01 23:33:20 EDT 2022
FORMULA

Sum_{k=1..n} T(n, k) = A031971(n).

T(n, n) = A000312(n).

T(2*n, n) = A062206(n).

From G. C. Greubel, Nov 01 2022: (Start)

T(n, n-1) = A007778(n-1), n >= 2.

T(n, n-2) = A008788(n-2), n >= 3.

T(2*n+1, n) = A085526(n).

T(2*n-1, n) = A085524(n).

T(2*n-1, n-1) = A085526(n-1), n >= 2.

T(3*n, n) = A083282(n).

Sum_{k=1..n} (-1)^k * T(n, k) = (-1)^n * A120485(n).

Sum_{k=1..floor(n/2)} T(n-k, k) = A226065(n).

Sum_{k=1..floor(n/2)} T(n, k) = A352981(n).

Sum_{k=1..floor(n/3)} T(n, k) = A352982(n). (End)

PROG

(Magma) [k^n: k in [1..n], n in [1..12]]; // G. C. Greubel, Nov 01 2022

(SageMath) flatten([[k^n for k in range(1, n+1)] for n in range(1, 12)]) # G. C. Greubel, Nov 01 2022

CROSSREFS

Row sums are Cf. A000312, A007778, A008788, A031971 (row sums), A062206, A083282.

T(n,n) gives A000312.

T(2n,n) gives A062206.

Cf. A085524, A085526, A120485, A226065, A352981, A252982.

STATUS

approved

editing

#51 by Giovanni Resta at Mon Oct 17 02:03:50 EDT 2022
STATUS

proposed

approved