cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A162611 Triangle read by rows in which row n lists n+1 terms, starting with n, such that the difference between successive terms is equal to n^2 - 1.

This page as a plain text file.
%I A162611 #5 Jun 18 2014 16:56:13
%S A162611 0,1,1,2,5,8,3,11,19,27,4,19,34,49,64,5,29,53,77,101,125,6,41,76,111,
%T A162611 146,181,216,7,55,103,151,199,247,295,343,8,71,134,197,260,323,386,
%U A162611 449,512,9,89,169,249,329,409,489,569,649,729,10,109,208,307,406,505,604
%N A162611 Triangle read by rows in which row n lists n+1 terms, starting with n, such that the difference between successive terms is equal to n^2 - 1.
%C A162611 Note that the last term of the n-th row is the n-th cube A000578(n).
%C A162611 See also A159797, A162614 and A162622.
%e A162611 Triangle begins:
%e A162611 0;
%e A162611 1, 1;
%e A162611 2, 5, 8;
%e A162611 3,11,19,27;
%e A162611 4,19,34,49,64;
%e A162611 5,29,53,77,101,125;
%e A162611 6,41,76,111,146,181,216;
%t A162611 Flatten[Join[{0,1,1},Table[Range[n,(n+1)(n^2-1),n^2-1],{n,2,10}]]] (* _Harvey P. Dale_, Jun 18 2014 *)
%Y A162611 Cf. A000578, A159797, A162612, A162613, A162614, A162622.
%K A162611 easy,nonn,tabl
%O A162611 0,4
%A A162611 _Omar E. Pol_, Jul 09 2009
%E A162611 Edited by _Omar E. Pol_, Jul 18 2009