login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
Search: seq:1,6,25,64,81,32
Displaying 1-4 of 4 results found. page 1
     Sort: relevance | references | number | modified | created      Format: long | short | data
A003992 Square array read by upwards antidiagonals: T(n,k) = n^k for n >= 0, k >= 0. +30
22
1, 1, 0, 1, 1, 0, 1, 2, 1, 0, 1, 3, 4, 1, 0, 1, 4, 9, 8, 1, 0, 1, 5, 16, 27, 16, 1, 0, 1, 6, 25, 64, 81, 32, 1, 0, 1, 7, 36, 125, 256, 243, 64, 1, 0, 1, 8, 49, 216, 625, 1024, 729, 128, 1, 0, 1, 9, 64, 343, 1296, 3125, 4096, 2187, 256, 1, 0, 1, 10, 81, 512, 2401, 7776, 15625, 16384, 6561, 512, 1, 0 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,8
COMMENTS
If the array is transposed, T(n,k) is the number of oriented rows of n colors using up to k different colors. The formula would be T(n,k) = [n==0] + [n>0]*k^n. The generating function for column k would be 1/(1-k*x). For T(3,2)=8, the rows are AAA, AAB, ABA, ABB, BAA, BAB, BBA, and BBB. - Robert A. Russell, Nov 08 2018
T(n,k) is the number of multichains of length n from {} to [k] in the Boolean lattice B_k. - Geoffrey Critzer, Apr 03 2020
LINKS
FORMULA
E.g.f.: Sum T(n,k)*x^n*y^k/k! = 1/(1-x*exp(y)). - Paul D. Hanna, Oct 22 2004
E.g.f.: Sum T(n,k)*x^n/n!*y^k/k! = e^(x*e^y). - Franklin T. Adams-Watters, Jun 23 2006
EXAMPLE
Rows begin:
[1, 0, 0, 0, 0, 0, 0, 0, ...],
[1, 1, 1, 1, 1, 1, 1, 1, ...],
[1, 2, 4, 8, 16, 32, 64, 128, ...],
[1, 3, 9, 27, 81, 243, 729, 2187, ...],
[1, 4, 16, 64, 256, 1024, 4096, 16384, ...],
[1, 5, 25, 125, 625, 3125, 15625, 78125, ...],
[1, 6, 36, 216, 1296, 7776, 46656, 279936, ...],
[1, 7, 49, 343, 2401, 16807, 117649, 823543, ...], ...
MATHEMATICA
Table[If[k == 0, 1, (n - k)^k], {n, 0, 11}, {k, 0, n}]//Flatten
PROG
(PARI) T(n, k) = (n-k)^k \\ Charles R Greathouse IV, Feb 07 2017
(Magma) [[(n-k)^k: k in [0..n]]: n in [0..10]]; // G. C. Greubel, Nov 08 2018
CROSSREFS
Main diagonal is A000312. Other diagonals include A000169, A007778, A000272, A008788. Antidiagonal sums are in A026898.
Cf. A099555.
Transpose is A004248. See A051128, A095884, A009999 for other versions.
Cf. A277504 (unoriented), A293500 (chiral).
KEYWORD
easy,nice,nonn,tabl
AUTHOR
EXTENSIONS
More terms from David W. Wilson
Edited by Paul D. Hanna, Oct 22 2004
STATUS
approved
A051128 Table T(n,k) = n^k read by upwards antidiagonals (n >= 1, k >= 1). +30
12
1, 2, 1, 3, 4, 1, 4, 9, 8, 1, 5, 16, 27, 16, 1, 6, 25, 64, 81, 32, 1, 7, 36, 125, 256, 243, 64, 1, 8, 49, 216, 625, 1024, 729, 128, 1, 9, 64, 343, 1296, 3125, 4096, 2187, 256, 1, 10, 81, 512, 2401, 7776, 15625, 16384, 6561, 512, 1, 11, 100, 729, 4096, 16807, 46656, 78125, 65536, 19683, 1024, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Sum of antidiagonals is A003101(n) for n>0. - Alford Arnold, Jan 14 2007
LINKS
G. Labelle, C. Lamathe and P. Leroux, Labeled and unlabeled enumeration of k-gonal 2-trees, arXiv:math/0312424 [math.CO], 2003.
FORMULA
a(n) = A004736(n)^A002260(n) or ((t*t+3*t+4)/2-n)^(n-(t*(t+1)/2)), where t=floor((-1+sqrt(8*n-7))/2). - Boris Putievskiy, Dec 14 2012
EXAMPLE
Table begins
1, 1, 1, 1, 1, ...
2, 4, 8, 16, 32, ...
3, 9, 27, 81, 243, ...
4, 16, 64, 256, 1024, ...
MAPLE
A051128 := proc(n) # Boris Putievskiy's formula
a := floor((sqrt(8*n-7)+1)/2);
b := (a+a^2)/2-n;
c := (a-a^2)/2+n;
(b+1)^c end:
seq(A051128(n), n=1..61); # Peter Luschny, Dec 14 2012
# second Maple program:
T:= (n, k)-> n^k:
seq(seq(T(1+d-k, k), k=1..d), d=1..11); # Alois P. Heinz, Apr 18 2020
MATHEMATICA
Table[n^(k - n + 1), {k, 1, 11}, {n, k, 1, -1}] // Flatten (* Jean-François Alcover, Dec 14 2012 *)
PROG
(PARI) T(n, k) = n^k \\ Charles R Greathouse IV, Feb 09 2017
CROSSREFS
KEYWORD
nonn,tabl,easy,nice
AUTHOR
EXTENSIONS
More terms from James A. Sellers, Dec 11 1999
STATUS
approved
A009999 Triangle in which j-th entry in i-th row is (i+1-j)^j, 0<=j<=i. +30
9
1, 1, 1, 1, 2, 1, 1, 3, 4, 1, 1, 4, 9, 8, 1, 1, 5, 16, 27, 16, 1, 1, 6, 25, 64, 81, 32, 1, 1, 7, 36, 125, 256, 243, 64, 1, 1, 8, 49, 216, 625, 1024, 729, 128, 1, 1, 9, 64, 343, 1296, 3125, 4096, 2187, 256, 1, 1, 10, 81, 512, 2401, 7776, 15625, 16384, 6561, 512, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
T(n,k) is the number of ways of placing 1..k in n boxes such that each box contains at most one number, and numbers in adjacent boxes are in increasing order. This can be proved by observing that there are n-(k-1) ways of extending each of T(n-1,k-1). - Jimin Park, Apr 16 2023
REFERENCES
M. Abramowitz and I. A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards Applied Math. Series 55, 1964 (and various reprintings), p. 24.
LINKS
M. Abramowitz and I. A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards, Applied Math. Series 55, Tenth Printing, 1972 [alternative scanned copy].
FORMULA
T(n,0) = 1; T(n,k) = (n-k+1)*T(n-1,k-1) for k=1..n. - Reinhard Zumkeller, Feb 02 2014
T(n,k) = Sum_{i=0..k} binomial(k,i)*T(n-1-i,k-i). - Jimin Park, Apr 16 2023
EXAMPLE
Triangle begins
1
1 1
1 2 1
1 3 4 1
1 4 9 8 1
1 5 16 27 16 1
1 6 25 64 81 32 1
1 7 36 125 256 243 64 1
1 8 49 216 625 1024 729 128 1
1 9 64 343 1296 3125 4096 2187 256 1
1 10 81 512 2401 7776 15625 16384 6561 512 1
MAPLE
A009999 := proc(i, j) (i+1-j)^j ; end proc: # R. J. Mathar, Jan 16 2011
MATHEMATICA
Table[(i+1-j)^j, {i, 0, 10}, {j, 0, i}] // Flatten (* Jean-François Alcover, Jan 14 2014 *)
PROG
(Haskell)
a009999 n k = (n + 1 - k) ^ k
a009999_row n = a009999_tabl !! n
a009999_tabl = [1] : map snd (iterate f ([1, 1], [1, 1])) where
f (us@(u:_), vs) = (us', 1 : zipWith (*) us' vs)
where us' = (u + 1) : us
-- Reinhard Zumkeller, Feb 02 2014
CROSSREFS
Row sums give A026898.
T(2n,n) gives A000169(n+1).
Cf. A009998 (mirrored).
KEYWORD
tabl,nonn,easy
AUTHOR
EXTENSIONS
T(10,8) corrected by Reinhard Zumkeller, Feb 02 2014
STATUS
approved
A055208 Table read by ascending antidiagonals: T(n,k) (n >= 1, k >= 1) is the sum of k-th powers of digits of n. +30
0
1, 2, 1, 3, 4, 1, 4, 9, 8, 1, 5, 16, 27, 16, 1, 6, 25, 64, 81, 32, 1, 7, 36, 125, 256, 243, 64, 1, 8, 49, 216, 625, 1024, 729, 128, 1, 9, 64, 343, 1296, 3125, 4096, 2187, 256, 1, 1, 81, 512, 2401, 7776, 15625, 16384, 6561, 512, 1, 2, 1, 729, 4096, 16807, 46656, 78125 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
T(34,2) = 3^2 + 4^2 = 25.
From Georg Fischer, Mar 01 2022: (Start)
Array T(n, k) (n >= 1, k >= 1) begins:
1, 1, 1, 1, ...
2, 4, 8, 16, ...
3, 9, 27, 64, ...
4, 16, 64, 256, ...
...
(End)
CROSSREFS
KEYWORD
base,easy,nonn,tabl
AUTHOR
Henry Bottomley, Jun 19 2000
EXTENSIONS
Definition clarified by Georg Fischer, Mar 01 2022
STATUS
approved
page 1

Search completed in 0.010 seconds

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 2 06:11 EDT 2024. Contains 372178 sequences. (Running on oeis4.)