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.
%I A133820 #11 Mar 05 2014 15:30:51 %S A133820 1,1,8,1,8,27,1,8,27,64,1,8,27,64,125,1,8,27,64,125,216,1,8,27,64,125, %T A133820 216,343,1,8,27,64,125,216,343,512,1,8,27,64,125,216,343,512,729,1,8, %U A133820 27,64,125,216,343,512,729,1000 %N A133820 Triangle whose rows are sequences of increasing cubes: 1; 1,8; 1,8,27; ... . %C A133820 Reading the triangle by rows produces the sequence 1,1,8,1,8,27,1,8,27,64,..., analogous to A002260. %H A133820 Reinhard Zumkeller, <a href="/A133820/b133820.txt">Rows n = 1..120 of triangle, flattened</a> %F A133820 O.g.f.: (1+4qx+q^2x^2)/((1-x)(1-qx)^4) = 1 + x(1 + 8q) + x^2(1 + 8q + 27q^2) + ... . %e A133820 Triangle starts %e A133820 1; %e A133820 1, 8; %e A133820 1, 8, 27; %e A133820 1, 8, 27, 64; %e A133820 1, 8, 27, 64, 125; %t A133820 Module[{nn=10,c},c=Range[nn]^3;Flatten[Table[Take[c,n],{n,10}]]] (* _Harvey P. Dale_, Mar 05 2014 *) %o A133820 (Haskell) %o A133820 a133820 n k = a133820_tabl !! (n-1) !! (k-1) %o A133820 a133820_row n = a133820_tabl !! (n-1) %o A133820 a133820_tabl = map (`take` (tail a000578_list)) [1..] %o A133820 -- _Reinhard Zumkeller_, Nov 11 2012 %Y A133820 Cf. A000537 (row sums), A002260, A019522, A133819, A133821, A133823. %K A133820 easy,nonn,tabl %O A133820 1,3 %A A133820 _Peter Bala_, Sep 25 2007 %E A133820 Offset changed by _Reinhard Zumkeller_, Nov 11 2012