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!)
A051125 Table T(n,k) = max{n,k} read by antidiagonals (n >= 1, k >= 1). 15

%I #42 Feb 17 2022 01:14:57

%S 1,2,2,3,2,3,4,3,3,4,5,4,3,4,5,6,5,4,4,5,6,7,6,5,4,5,6,7,8,7,6,5,5,6,

%T 7,8,9,8,7,6,5,6,7,8,9,10,9,8,7,6,6,7,8,9,10,11,10,9,8,7,6,7,8,9,10,

%U 11,12,11,10,9,8,7,7,8,9,10,11,12,13,12,11,10,9,8,7,8,9,10,11,12,13,14,13

%N Table T(n,k) = max{n,k} read by antidiagonals (n >= 1, k >= 1).

%C Antidiagonal sums = A006578. - _Reinhard Zumkeller_, Nov 17 2011

%H Peter Kagey, <a href="/A051125/b051125.txt">Antidiagonals n = 1..126 of triangle, flattened</a>

%F From _Robert Israel_, Jul 22 2016: (Start)

%F G.f. as table: G(x,y) = x*y*(1-3*x*y+x*y^2+x^2*y)/((1-x*y)*(1-x)^2*(1-y)^2).

%F G.f. flattened: (1-x)^(-2)*(x^2 + Sum_{j >= 0} x^(2*j^2) *(x+x^2 -2*x^(j+2)-2*x^(-j+2)+2*x^(2*j+2))). (End)

%e Table begins

%e 1, 2, 3, 4, 5, ...

%e 2, 2, 3, 4, 5, ...

%e 3, 3, 3, 4, 5, ...

%e 4, 4, 4, 4, 5, ...

%e ...

%p seq(seq(max(r,d+1-r),r=1..d),d=1..15); # _Robert Israel_, Jul 22 2016

%t Flatten[Table[Max[n-k+1, k], {n, 13}, {k, n, 1, -1}]] (* _Alonso del Arte_, Nov 17 2011 *)

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

%o (Magma) [Max(n-k+1,k): k in [1..n], n in [1..15]]; // _G. C. Greubel_, Jul 23 2019

%o (Sage) [[max(n-k+1,k) for k in (1..n)] for n in (1..15)] # _G. C. Greubel_, Jul 23 2019

%o (GAP) Flat(List([1..15], n-> List([1..n], k-> Maximum(n-k+1,k) ))); # _G. C. Greubel_, Jul 23 2019

%Y Cf. A003056, A003983, A003984, A004197.

%Y Equals A003984(n) + 1.

%K nonn,tabl,easy,nice

%O 1,2

%A _N. J. A. Sloane_

%E More terms from Robert Lozyniak

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 April 18 08:27 EDT 2024. Contains 371769 sequences. (Running on oeis4.)