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!)
A162612 Triangle read by rows in which row n lists n terms, starting with n^2+n-1, with gaps = n^2-1 between successive terms. 10
1, 5, 8, 11, 19, 27, 19, 34, 49, 64, 29, 53, 77, 101, 125, 41, 76, 111, 146, 181, 216, 55, 103, 151, 199, 247, 295, 343, 71, 134, 197, 260, 323, 386, 449, 512, 89, 169, 249, 329, 409, 489, 569, 649, 729, 109, 208, 307, 406, 505, 604, 703, 802, 901, 1000, 131, 251 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Note that the last term of the n-th row is the n-th cube A000578(n).
LINKS
FORMULA
Sum_{k=1..n} T(n,k)= n*(n^3 + n^2 + n - 1)/2 (row sums). - R. J. Mathar, Jul 20 2009
EXAMPLE
Triangle begins:
1;
5, 8;
11, 19, 27;
19, 34, 49, 64;
29, 53, 77, 101, 125;
41, 76, 111, 146, 181, 216;
MATHEMATICA
Table[NestList[#+n^2-1&, n^2+n-1, n-1], {n, 20}]//Flatten (* Harvey P. Dale, Mar 02 2024 *)
PROG
(PARI) T(n, k)=n+k*(n^2-1) \\ Franklin T. Adams-Watters, Aug 06 2009
CROSSREFS
Sequence in context: A314399 A175319 A154486 * A314400 A314401 A355168
KEYWORD
easy,nonn,tabl
AUTHOR
Omar E. Pol, Jul 09 2009
EXTENSIONS
More terms from Franklin T. Adams-Watters, Aug 06 2009
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 23 03:30 EDT 2024. Contains 371906 sequences. (Running on oeis4.)