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!)
A093446 Largest member of the n-th row of the triangular triangle (A093445). 4
1, 3, 9, 18, 33, 54, 82, 120, 165, 225, 294, 378, 476, 588, 720, 865, 1035, 1221, 1430, 1662, 1914, 2197, 2499, 2835, 3195, 3585, 4008, 4456, 4947, 5463, 6021, 6612, 7239, 7910, 8610, 9366, 10153, 10989, 11868, 12788, 13764, 14775, 15850, 16965, 18135 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
The largest terms is near the middle term at about 42.265%. Lim a(n) -> 0.19245*n^3
LINKS
EXAMPLE
The row for n = 4 is (1+2+3+4), (5+6+7), (8+9), 10 => 10 18 17 10. The largest member is 18 hence a(4) = 18.
MATHEMATICA
T[n_] := n(n + 1)/2; TT[n_, k_] := T[k*n - T[k - 1]] - T[(k - 1)*n - T[k - 2]]; Max[ # ] & /@ Table[ TT[n, k], {n, 45}, {k, n}]
PROG
(Haskell)
a093446 = maximum . a093445_row -- Reinhard Zumkeller, Oct 03 2012
CROSSREFS
Sequence in context: A194114 A127759 A064843 * A256524 A210970 A293406
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Apr 02 2004
EXTENSIONS
Edited, corrected and extended by Robert G. Wilson v, Apr 24 2004
STATUS
approved

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 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)