The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A051128 Table T(n,k) = n^k read by upwards antidiagonals (n >= 1, k >= 1). 12

%I #43 Apr 20 2020 11:58:53

%S 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,

%T 1,8,49,216,625,1024,729,128,1,9,64,343,1296,3125,4096,2187,256,1,10,

%U 81,512,2401,7776,15625,16384,6561,512,1,11,100,729,4096,16807,46656,78125,65536,19683,1024,1

%N Table T(n,k) = n^k read by upwards antidiagonals (n >= 1, k >= 1).

%C Sum of antidiagonals is A003101(n) for n>0. - _Alford Arnold_, Jan 14 2007

%H T. D. Noe, <a href="/A051128/b051128.txt">Rows n=1..50 of triangle, flattened</a>

%H G. Labelle, C. Lamathe and P. Leroux, <a href="https://arxiv.org/abs/math/0312424">Labeled and unlabeled enumeration of k-gonal 2-trees</a>, arXiv:math/0312424 [math.CO], 2003.

%F 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

%e Table begins

%e 1, 1, 1, 1, 1, ...

%e 2, 4, 8, 16, 32, ...

%e 3, 9, 27, 81, 243, ...

%e 4, 16, 64, 256, 1024, ...

%p A051128 := proc(n) # _Boris Putievskiy_'s formula

%p a := floor((sqrt(8*n-7)+1)/2);

%p b := (a+a^2)/2-n;

%p c := (a-a^2)/2+n;

%p (b+1)^c end:

%p seq(A051128(n), n=1..61); # _Peter Luschny_, Dec 14 2012

%p # second Maple program:

%p T:= (n, k)-> n^k:

%p seq(seq(T(1+d-k, k), k=1..d), d=1..11); # _Alois P. Heinz_, Apr 18 2020

%t Table[n^(k - n + 1), {k, 1, 11}, {n, k, 1, -1}] // Flatten (* _Jean-François Alcover_, Dec 14 2012 *)

%o (PARI) T(n,k) = n^k \\ _Charles R Greathouse IV_, Feb 09 2017

%Y Cf. A051129, A003992, A004248, A033918, A095891, A220415, A220416, A220417, A003101.

%K nonn,tabl,easy,nice

%O 1,2

%A _N. J. A. Sloane_

%E More terms from _James A. Sellers_, Dec 11 1999

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 17 01:45 EDT 2024. Contains 372572 sequences. (Running on oeis4.)